OSDN Git Service

とりあえず、APIレベルの引き上げと Android Jetpack化。
[gokigen/JoggingTimer.git] / mobile / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 32
5     defaultConfig {
6         applicationId "net.osdn.gokigen.joggingtimer"
7         minSdkVersion 14  // 14
8         targetSdkVersion 32
9         versionCode 100044
10         versionName "1.0.5"
11     }
12     buildTypes {
13         release {
14             minifyEnabled false
15             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
16         }
17     }
18 }
19
20 dependencies {
21     implementation fileTree(dir: 'libs', include: ['*.jar'])
22     implementation 'androidx.appcompat:appcompat:1.4.1'
23     wearApp project(':wear')
24 }