标签:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
android { buildTypes { debug { applicationIdSuffix ".debug" } jnidebug.initWith(buildTypes.debug) jnidebug { packageNameSuffix ".jnidebug" jniDebuggable true } } } |
1
2
3
|
android { sourceSets.jnidebug.setRoot( ‘foo/jnidebug‘ ) } |
android-gradle-深入浅出-五:build type
标签:
原文地址:http://www.cnblogs.com/xgjblog/p/4635260.html