OSDN Git Service

いリース前に使用ライブラリを更新。
[gokigen/PKRemote.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2 apply plugin: 'kotlin-android'
3
4 android {
5     defaultConfig {
6         applicationId "net.osdn.gokigen.pkremote"
7         minSdkVersion 14
8         compileSdkVersion 34
9         targetSdkVersion 34
10         versionCode 10807
11         versionName "1.8.7"
12         multiDexEnabled true
13     }
14     buildTypes {
15         release {
16             minifyEnabled false
17             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
18         }
19     }
20     compileOptions {
21         //sourceCompatibility JavaVersion.VERSION_1_8
22         //targetCompatibility JavaVersion.VERSION_1_8
23         sourceCompatibility JavaVersion.VERSION_17
24         targetCompatibility JavaVersion.VERSION_17
25     }
26     namespace 'net.osdn.gokigen.pkremote'
27 }
28
29 dependencies {
30     implementation fileTree(dir: 'libs', include: ['*.jar'])
31     implementation 'androidx.appcompat:appcompat:1.6.1'
32     implementation 'androidx.exifinterface:exifinterface:1.3.6'
33     implementation 'androidx.preference:preference-ktx:1.2.1'
34     implementation 'com.google.android.material:material:1.9.0'
35     implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
36     implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
37     //implementation "androidx.core:core-splashscreen:1.0.1"
38
39     api files('libs/olycamerakit.jar')
40     implementation "androidx.core:core-ktx:1.10.1"
41     //implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
42 }
43 repositories {
44     google()
45     mavenCentral()
46 }