OSDN Git Service

APIレベルを32まで引上げ。
[gokigen/PKRemote.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2 apply plugin: 'kotlin-android'
3
4 android {
5     compileSdkVersion 32
6     defaultConfig {
7         applicationId "net.osdn.gokigen.pkremote"
8         minSdkVersion 14
9         targetSdkVersion 32
10         versionCode 10802
11         versionName "1.8.2"
12     }
13     buildTypes {
14         release {
15             minifyEnabled false
16             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
17         }
18     }
19 }
20
21 dependencies {
22     implementation fileTree(dir: 'libs', include: ['*.jar'])
23     implementation 'androidx.appcompat:appcompat:1.4.1'
24     implementation 'androidx.exifinterface:exifinterface:1.3.3'
25     implementation 'androidx.preference:preference-ktx:1.2.0'
26     implementation 'com.google.android.material:material:1.5.0'
27     implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
28     implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
29
30     api files('libs/olycamerakit.jar')
31     implementation "androidx.core:core-ktx:1.7.0"
32     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
33 }
34 repositories {
35     mavenCentral()
36 }