WAIT。我知道你在想什么。在你将它标记为“重复”之前,你需要知道我见过的所有其他帖子都有可怕的答案,绝对不适合我。它们可能已经过时,我不确定,但我所知道的是它们不起作用
所以我的gradle内置'app'。它看起来像这样:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.oneclicklearn.fastchat"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:25.3.1'
compile 'com.google.firebase:firebase-database:3.1.0'
compile 'com.google.firebase:messaging:3.1.0'
compile 'com.google.firebase:auth:3.1.0'
}
apply plugin: 'com.google.gms.google-services'
我也可以在这里添加截图。你可以在这里看到我的所有文件:
现在我将列出似乎无益的链接:
我希望这对你来说足够了。如果您需要我说更多,请随意发表评论!