mirror of
https://github.com/android/ndk-samples
synced 2025-11-11 02:45:37 +08:00
Merge pull request #16 from proppy/bump-gradle
bump gradle plugin version to beta4
This commit is contained in:
@@ -14,7 +14,7 @@ buildscript {
|
|||||||
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
||||||
* find the version under the plugin name directory[gradle-experimental].
|
* find the version under the plugin name directory[gradle-experimental].
|
||||||
*/
|
*/
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ buildscript {
|
|||||||
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
||||||
* find the version under the plugin name directory[gradle-experimental].
|
* find the version under the plugin name directory[gradle-experimental].
|
||||||
*/
|
*/
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ buildscript {
|
|||||||
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
||||||
* find the version under the plugin name directory[gradle-experimental].
|
* find the version under the plugin name directory[gradle-experimental].
|
||||||
*/
|
*/
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -12,4 +12,4 @@ dependencies {
|
|||||||
|
|
||||||
test {
|
test {
|
||||||
testLogging.showStandardStreams = true
|
testLogging.showStandardStreams = true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ buildscript {
|
|||||||
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
||||||
* find the version under the plugin name directory[gradle-experimental].
|
* find the version under the plugin name directory[gradle-experimental].
|
||||||
*/
|
*/
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ buildscript {
|
|||||||
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
||||||
* find the version under the plugin name directory[gradle-experimental].
|
* find the version under the plugin name directory[gradle-experimental].
|
||||||
*/
|
*/
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ buildscript {
|
|||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -34,25 +34,25 @@ model {
|
|||||||
// for detailed abiFilter descriptions, refer to "Supported ABIs" @
|
// for detailed abiFilter descriptions, refer to "Supported ABIs" @
|
||||||
// https://developer.android.com/ndk/guides/abis.html#sa
|
// https://developer.android.com/ndk/guides/abis.html#sa
|
||||||
create("arm") {
|
create("arm") {
|
||||||
ndk.abiFilters += "armeabi"
|
ndkConfig.abiFilters += "armeabi"
|
||||||
}
|
}
|
||||||
create("arm7") {
|
create("arm7") {
|
||||||
ndk.abiFilters += "armeabi-v7a"
|
ndkConfig.abiFilters += "armeabi-v7a"
|
||||||
}
|
}
|
||||||
create("arm8") {
|
create("arm8") {
|
||||||
ndk.abiFilters += "arm64-v8a"
|
ndkConfig.abiFilters += "arm64-v8a"
|
||||||
}
|
}
|
||||||
create("x86") {
|
create("x86") {
|
||||||
ndk.abiFilters += "x86"
|
ndkConfig.abiFilters += "x86"
|
||||||
}
|
}
|
||||||
create("x86-64") {
|
create("x86-64") {
|
||||||
ndk.abiFilters += "x86_64"
|
ndkConfig.abiFilters += "x86_64"
|
||||||
}
|
}
|
||||||
create("mips") {
|
create("mips") {
|
||||||
ndk.abiFilters += "mips"
|
ndkConfig.abiFilters += "mips"
|
||||||
}
|
}
|
||||||
create("mips-64") {
|
create("mips-64") {
|
||||||
ndk.abiFilters += "mips64"
|
ndkConfig.abiFilters += "mips64"
|
||||||
}
|
}
|
||||||
// To include all cpu architectures, leaves abiFilters empty
|
// To include all cpu architectures, leaves abiFilters empty
|
||||||
create("all")
|
create("all")
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ buildscript {
|
|||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ buildscript {
|
|||||||
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
||||||
* find the version under the plugin name directory[gradle-experimental].
|
* find the version under the plugin name directory[gradle-experimental].
|
||||||
*/
|
*/
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ buildscript {
|
|||||||
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
||||||
* find the version under the plugin name directory[gradle-experimental].
|
* find the version under the plugin name directory[gradle-experimental].
|
||||||
*/
|
*/
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ buildscript {
|
|||||||
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
||||||
* find the version under the plugin name directory[gradle-experimental].
|
* find the version under the plugin name directory[gradle-experimental].
|
||||||
*/
|
*/
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ buildscript {
|
|||||||
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
||||||
* find the version under the plugin name directory[gradle-experimental].
|
* find the version under the plugin name directory[gradle-experimental].
|
||||||
*/
|
*/
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ buildscript {
|
|||||||
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
||||||
* find the version under the plugin name directory[gradle-experimental].
|
* find the version under the plugin name directory[gradle-experimental].
|
||||||
*/
|
*/
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ buildscript {
|
|||||||
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
* if you build locally, go to $your_src_dir/out/repo/com/android/tools/build
|
||||||
* find the version under the plugin name directory[gradle-experimental].
|
* find the version under the plugin name directory[gradle-experimental].
|
||||||
*/
|
*/
|
||||||
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta3'
|
classpath 'com.android.tools.build:gradle-experimental:1.3.0-beta4'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user