12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- apply plugin: 'com.android.application'
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-android-extensions'
- android {
- compileSdkVersion 29
- buildToolsVersion "29.0.2"
- defaultConfig {
- applicationId "com.airsmart.jackie.loopviewpagerdemo"
- minSdkVersion 21
- targetSdkVersion 29
- versionCode 1
- versionName "1.0"
- //testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- 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 fileTree(dir: 'libs', include: ['*.jar'])
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
- //implementation 'com.android.support:appcompat-v7:28.0.0'
- //implementation 'androidx.appcompat:appcompat:1.1.0'
- //implementation 'androidx.recyclerview:recyclerview:1.1.0'
- implementation "com.android.support:recyclerview-v7:28.0.0"
- implementation 'com.android.support:appcompat-v7:28.0.0'
- /*androidx.paging:paging-common
- androidx.paging:paging-runtime*/
- //paging
- implementation 'android.arch.paging:runtime:1.0.1'
- implementation 'android.arch.paging:common:1.0.1'
- // implementation 'androidx.paging:paging-common:2.1.2'
- // implementation 'androidx.paging:paging-runtime:2.1.2'
- //implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
- //implementation 'com.airsmart.github.lib:MPAndroidChart:1.0.1'
- implementation project(':MPChartLib')
- //implementation 'androidx.core:core-ktx:1.2.0'
- //implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- //implementation 'com.android.support.constraint:constraint-layout:1.1.3'
- implementation 'com.android.support.constraint:constraint-layout:1.1.3'
- /*testImplementation 'junit:junit:4.12'
- androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'*/
- implementation 'com.annimon:stream:1.2.1'
- }
|