1
我已經在這裏發現了很多關於此問題的線索,但是他們都沒有爲我工作。您需要使用不同的包名稱,因爲「com.example」受限制
我正在使用Android Studio 2.1.2,並且我仍然有com.example域名。在清單或任何其他文件更改是導致出現得分的錯誤,而我的build.gradle只能說明這一點:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
有人可以請給我一些建議,我已經花了很多時間在這應用已經?在此先感謝:-)
這就是我一直在尋找的!非常感謝! –