OSDN Git Service

とりあえず、いつもの画像確認関連の部分を追加した。
[gokigen/PKRemote.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 28
5     defaultConfig {
6         applicationId "net.osdn.gokigen.pkremote"
7         minSdkVersion 14
8         targetSdkVersion 28
9         versionCode 10000
10         versionName "1.0.0"
11         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
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.0.2'
24     implementation 'androidx.exifinterface:exifinterface:1.0.0'
25     implementation 'androidx.preference:preference:1.0.0'
26     implementation 'com.google.android.material:material:1.0.0'
27     implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
28     implementation 'androidx.vectordrawable:vectordrawable:1.0.1'
29     testImplementation 'junit:junit:4.12'
30     androidTestImplementation 'androidx.test:runner:1.1.1'
31     androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
32
33     api files('libs/olycamerakit.jar')
34 }