4
在Android Studio中的Gradle中,我注意到提供依賴範圍是可選的。例如:Android上的Gradle中的默認依賴範圍是什麼?
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
'org.hamcrest:hamcrest-core:1.3'
'org.hamcrest:hamcrest-library:1.3'
}
請注意,最後兩個庫沒有附加編譯範圍。我將它留空,我仍然可以同步gradle。如果沒有在這裏指定什麼默認範圍?
呀我明白你的意思。 Gradle同步成功,但是當我去實際運行應用程序時,它說它找不到範圍。它非常奇怪的同步雖然成功。謝謝。 – j2emanue