1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- plugins {
- id 'com.android.application'
- }
- android {
- compileSdk 30
- defaultConfig {
- applicationId "me.yoqi.android.jkbd"
- minSdk 21
- targetSdk 30
- 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(include: ['*.jar'], dir: 'libs')
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'com.google.android.material:material:1.3.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
- testImplementation 'junit:junit:4.+'
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- // androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
- // exclude group: 'com.android.support', module: 'support-annotations'
- // })
- implementation 'com.squareup.okhttp3:okhttp:3.8.1'
- implementation 'com.squareup.okio:okio-parent:1.13.0'
- implementation 'com.squareup.okhttp3:okhttp-urlconnection:3.8.1'
- implementation 'com.google.code.gson:gson:2.8.1'
- implementation 'com.squareup.picasso:picasso:2.5.2'
- implementation 'com.jakewharton:butterknife:8.6.0'
- annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0'
- }
|