| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- plugins {
- id 'com.android.application'
- id 'kotlin-android'
- }
- apply plugin:'kotlin-android-extensions'
- android {
- compileSdkVersion 29
- buildToolsVersion "30.0.2"
- defaultConfig {
- applicationId "com.example.watch"
- minSdkVersion 24
- targetSdkVersion 29
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- ndk {
- abiFilters "armeabi-v7a", "arm64-v8a"
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- repositories {
- maven { url 'https://jitpack.io' }
- flatDir {
- dirs 'libs'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = '1.8'
- }
- }
- dependencies {
- implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
- implementation 'androidx.core:core-ktx:1.3.2'
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'com.google.android.material:material:1.2.1'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
- implementation 'androidx.navigation:navigation-fragment-ktx:2.3.1'
- implementation 'androidx.navigation:navigation-ui-ktx:2.3.1'
- implementation 'androidx.gridlayout:gridlayout:1.0.0'
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation(name: 'chileaf_wear_sdk_2.0.0', ext: 'aar')
- implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- implementation 'androidx.viewpager:viewpager:1.0.0'
- testImplementation 'junit:junit:4.13'
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
- implementation 'com.jakewharton.timber:timber:4.7.1'
- implementation 'com.yanzhenjie:permission:2.0.3'
- implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.50'
- implementation 'com.android.support:appcompat-v7:27.1.1'
- implementation 'com.android.support:design:27.1.1'
- }
|