update java projects to sourceCompatibility/targetCompatibility=11 and compileSdkVersion 33

This commit is contained in:
Philipp Crocoll
2023-01-30 10:54:06 +01:00
parent c1f7460c3e
commit bede68b60a
8 changed files with 19 additions and 19 deletions

View File

@@ -4,11 +4,11 @@ android {
namespace 'keepass2android.javafilestorage' namespace 'keepass2android.javafilestorage'
compileSdkVersion 28 compileSdkVersion 33
defaultConfig { defaultConfig {
minSdkVersion 15 minSdkVersion 15
targetSdkVersion 28 targetSdkVersion 33
} }
buildTypes { buildTypes {
release { release {
@@ -19,8 +19,8 @@ android {
productFlavors { productFlavors {
} }
compileOptions { compileOptions {
sourceCompatibility 1.8 sourceCompatibility 11
targetCompatibility 1.8 targetCompatibility 11
} }
} }

View File

@@ -3,12 +3,12 @@ apply plugin: 'com.android.application'
android { android {
namespace "com.crocoapps.javafilestoragetest2" namespace "com.crocoapps.javafilestoragetest2"
compileSdkVersion 28 compileSdkVersion 33
defaultConfig { defaultConfig {
applicationId "com.crocoapps.javafilestoragetest2" applicationId "com.crocoapps.javafilestoragetest2"
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 31 targetSdkVersion 33
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
multiDexEnabled true multiDexEnabled true
@@ -24,8 +24,8 @@ android {
compileOptions { compileOptions {
sourceCompatibility 1.8 sourceCompatibility 11
targetCompatibility 1.8 targetCompatibility 11
} }
} }

View File

@@ -4,7 +4,7 @@ android {
namespace 'keepass2android.kp2akeytransform' namespace 'keepass2android.kp2akeytransform'
compileSdkVersion 23 compileSdkVersion 33
defaultConfig { defaultConfig {
ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64' ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'

View File

@@ -3,7 +3,7 @@ android {
namespace 'keepass2android.softkeyboard' namespace 'keepass2android.softkeyboard'
compileSdkVersion 23 compileSdkVersion 33
defaultConfig { defaultConfig {
minSdkVersion 18 minSdkVersion 18

View File

@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip

View File

@@ -3,11 +3,11 @@ android {
namespace 'keepass2android.pluginsdk' namespace 'keepass2android.pluginsdk'
compileSdkVersion 23 compileSdkVersion 33
defaultConfig { defaultConfig {
minSdkVersion 8 minSdkVersion 18
targetSdkVersion 19 targetSdkVersion 33
} }
buildTypes { buildTypes {

View File

@@ -5,7 +5,7 @@
<uses-sdk <uses-sdk
android:minSdkVersion="8" android:minSdkVersion="8"
android:targetSdkVersion="19" /> />
</manifest> </manifest>

View File

@@ -4,11 +4,11 @@ android {
namespace 'group.pals.android.lib.ui.filechooser' namespace 'group.pals.android.lib.ui.filechooser'
compileSdkVersion 28 compileSdkVersion 33
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 28 targetSdkVersion 33
} }
buildTypes { buildTypes {
@@ -19,8 +19,8 @@ android {
} }
} }
compileOptions { compileOptions {
targetCompatibility 1.8 targetCompatibility 11
sourceCompatibility 1.8 sourceCompatibility 11
} }
} }