Upgrade to targetSdk 34

This commit is contained in:
2024-03-01 16:17:33 +01:00
parent b301cb3029
commit f122ec37d7
4 changed files with 4 additions and 46 deletions

View File

@ -10,11 +10,11 @@ apply plugin: 'com.android.application'
android { android {
signingConfigs { signingConfigs {
} }
compileSdk 33 compileSdk 34
defaultConfig { defaultConfig {
applicationId 'de.frajul.endlessroll' applicationId 'de.frajul.endlessroll'
minSdkVersion 14 minSdkVersion 14
targetSdkVersion 33 targetSdkVersion 34
versionCode 9 versionCode 9
versionName '1.0' versionName '1.0'
} }

View File

@ -8,11 +8,11 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdk 33 compileSdk 34
defaultConfig { defaultConfig {
applicationId "de.frajul.particlelab" applicationId "de.frajul.particlelab"
minSdkVersion 14 minSdkVersion 14
targetSdk 33 targetSdk 34
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
} }

View File

@ -1,20 +0,0 @@
/*
* Created by Julian Mutter on 7/10/18 3:58 PM
* Copyright (c) 2018. All rights reserved.
* Last modified 7/10/18 3:54 PM
*
*/
package com.example.particlelab;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}

View File

@ -1,22 +0,0 @@
/*
* Created by Julian Mutter on 7/10/18 3:58 PM
* Copyright (c) 2018. All rights reserved.
* Last modified 7/10/18 3:54 PM
*
*/
package com.example.particlelab;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* To work on unit tests, switch the Test Artifact in the Build Variants view.
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
}