| apply plugin: "com.android.application" |
| |
| android { |
| compileSdkVersion 28 |
| |
| defaultConfig { |
| applicationId "com.example.myface" |
| minSdkVersion 26 |
| targetSdkVersion 28 |
| 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.1.0' |
| } |