OSDN Git Service

データ送信時のintentの変更(強化)検討中。
[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
8         targetSdkVersion 33
9         versionCode 100050
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     namespace 'net.osdn.gokigen.joggingtimer'
19     compileOptions {
20         sourceCompatibility JavaVersion.VERSION_17
21         targetCompatibility JavaVersion.VERSION_17
22     }
23 }
24
25 dependencies {
26     implementation fileTree(dir: 'libs', include: ['*.jar'])
27     implementation 'androidx.appcompat:appcompat:1.6.1'
28     wearApp project(':wear')
29 }