X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=app%2Fbuild.gradle;h=5660c7d8166476feb70ec0398916c43b1ab3105d;hb=98620ded7ac29f46ed1d43d4cf470a6781ff87f1;hp=af1cf187b2d8ebce750fcebea864e151dcd4e57c;hpb=111aa772d823aaa44cfcaa9ac8d4d784b54a522a;p=gokigen%2FGr2Control.git diff --git a/app/build.gradle b/app/build.gradle index af1cf18..5660c7d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,11 +1,11 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 29 + compileSdkVersion 33 defaultConfig { applicationId "net.osdn.gokigen.gr2control" minSdkVersion 14 - targetSdkVersion 29 + targetSdkVersion 33 versionCode 1003004 versionName "1.3.4" } @@ -15,15 +15,20 @@ android { proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } + compileOptions { + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 + } + namespace 'net.osdn.gokigen.gr2control' } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'androidx.appcompat:appcompat:1.1.0' - implementation 'androidx.preference:preference:1.1.1' - implementation 'androidx.exifinterface:exifinterface:1.2.0' - implementation 'androidx.constraintlayout:constraintlayout:1.1.3' - implementation 'com.google.android.material:material:1.1.0' + implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'androidx.preference:preference:1.2.0' + implementation 'androidx.exifinterface:exifinterface:1.3.6' + implementation 'androidx.constraintlayout:constraintlayout:2.1.4' + implementation 'com.google.android.material:material:1.8.0' api files('libs/olycamerakit.jar') }