2016-07-14 52 views
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 
} 

有人可以請給我一些建議,我已經花了很多時間在這應用已經?在此先感謝:-)

回答

6

你在你的問題中顯示的是頂級build.gradle

打開應用程序級別build.gradle(在app文件夾內),並改變對applciationId

你不需要在你的代碼到處更改包名包名。只要在這裏修改它,將會使用提供的軟件包名稱生成您的apk,而與您在src文件夾中的軟件包的命名方式無關。

+0

這就是我一直在尋找的!非常感謝! –

相關問題