applyplugin:'com.android.application'
android {
compileSdkVersion26
buildToolsVersion"26.0.2"
defaultConfig {
applicationId"com.pangge.yeim"
minSdkVersion17
targetSdkVersion26
versionCode1
versionName"1.0"
testInstrumentationRunner"android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags"-frtti -fexceptions"
}
}
// jackOptions {
// enabled true
//}
}
buildTypes {
release {
minifyEnabledfalse
proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path"CMakeLists.txt"
}
}
compileOptions {
sourceCompatibilityJavaVersion.VERSION_1_8
targetCompatibilityJavaVersion.VERSION_1_8
}
}
dependencies {
compile fileTree(include: ['*.jar'],dir:'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
excludegroup:'com.android.support',module:'support-annotations'
})
compile'com.google.firebase:firebase-core:11.0.4'
compile'com.google.firebase:firebase-auth:11.0.4'
compile'com.google.firebase:firebase-database:11.0.4'
compile'com.firebaseui:firebase-ui-database:2.3.0'
compile'com.android.support:appcompat-v7:26.0.2'
compile'io.reactivex.rxjava2:rxjava:2.1.3'
compile'io.reactivex.rxjava2:rxandroid:2.0.1'
compile'com.jakewharton.rxbinding2:rxbinding:2.0.0'
compile'com.jakewharton.rxbinding2:rxbinding-design:2.0.0'
compile'com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.0.0'
compile'com.android.support.constraint:constraint-layout:1.0.2'
compile'com.jakewharton:butterknife:8.8.1'
compile'com.android.support:cardview-v7:26.0.2'
compile'com.android.support:design:26.0.2'
compile'com.google.firebase:firebase-storage:11.0.4'
testCompile'junit:junit:4.12'
annotationProcessor'com.jakewharton:butterknife-compiler:8.8.1'
compile'com.theartofdev.edmodo:android-image-cropper:2.5.0'
compile'com.github.bumptech.glide:glide:4.1.1'
annotationProcessor'com.github.bumptech.glide:compiler:4.1.1'
compile'com.android.support:support-v4:26.0.2'
compile'com.google.android.gms:play-services-ads:11.0.4'
compile'com.google.firebase:firebase-ads:11.0.4'
}
applyplugin:'com.google.gms.google-services'
网友评论