| apply plugin: "com.android.application" |
| |
| android { |
| compileSdkVersion 34 |
| |
| defaultConfig { |
| applicationId "com.example.myface" |
| minSdkVersion 30 |
| targetSdkVersion 34 |
| versionCode 1 |
| versionName "1.0" |
| vectorDrawables { |
| useSupportLibrary true |
| } |
| |
| } |
| |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
| } |
| } |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_1_8 |
| targetCompatibility JavaVersion.VERSION_1_8 |
| } |
| } |
| |
| dependencies { |
| implementation 'androidx.wear.watchface:watchface-guava:1.2.1' |
| implementation 'androidx.wear.watchface:watchface-complications-data-source-ktx:1.2.1' |
| implementation 'androidx.wear.tiles:tiles:1.4.0' |
| } |