OSDN Git Service

b3d910d2d42f0617c0fa9059047581e69848fd31
[gokigen/JoggingTimer.git] / mobile / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 33
5     defaultConfig {
6         applicationId "net.osdn.gokigen.joggingtimer"
7         minSdkVersion 14  // 14
8         targetSdkVersion 33
9         versionCode 100050
10         versionName "1.0.3"
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.6.1'
23     wearApp project(':wear')
24 }