Remove the "nativeLibsToJar" gradle task.
This commit is contained in:
parent
6414cdabb2
commit
2fe4b9ce68
|
@ -4,18 +4,6 @@ android {
|
||||||
compileSdkVersion 21
|
compileSdkVersion 21
|
||||||
buildToolsVersion "20.0.0"
|
buildToolsVersion "20.0.0"
|
||||||
|
|
||||||
task nativeLibsToJar(type: Zip, description: 'create a jar archive of the native libs') {
|
|
||||||
destinationDir file("$buildDir/native-libs")
|
|
||||||
baseName 'native-libs'
|
|
||||||
extension 'jar'
|
|
||||||
from fileTree(dir: 'libs', include: '**/*.so')
|
|
||||||
into 'lib/'
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.withType(JavaCompile) {
|
|
||||||
compileTask -> compileTask.dependsOn(nativeLibsToJar)
|
|
||||||
}
|
|
||||||
|
|
||||||
lintOptions {
|
lintOptions {
|
||||||
// This is important as it will run lint but not abort on error
|
// This is important as it will run lint but not abort on error
|
||||||
// Lint has some overly obnoxious "errors" that should really be warnings
|
// Lint has some overly obnoxious "errors" that should really be warnings
|
||||||
|
@ -30,7 +18,6 @@ android {
|
||||||
versionName "0.13"
|
versionName "0.13"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
if (project.hasProperty('keystore')) {
|
if (project.hasProperty('keystore')) {
|
||||||
|
@ -59,8 +46,6 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
||||||
compile fileTree(dir: "$buildDir/native-libs", include: 'native-libs.jar')
|
|
||||||
|
|
||||||
compile 'com.android.support:support-v4:22.0.0'
|
compile 'com.android.support:support-v4:22.0.0'
|
||||||
compile 'com.android.support:support-v13:22.0.0'
|
compile 'com.android.support:support-v13:22.0.0'
|
||||||
|
|
|
@ -117,13 +117,13 @@ if(ANDROID)
|
||||||
"-Wl,--no-whole-archive"
|
"-Wl,--no-whole-archive"
|
||||||
)
|
)
|
||||||
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
||||||
COMMAND mkdir ARGS -p ${CMAKE_SOURCE_DIR}/Source/Android/app/libs/${ANDROID_NDK_ABI_NAME}
|
COMMAND mkdir ARGS -p ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/jniLibs/${ANDROID_NDK_ABI_NAME}
|
||||||
)
|
)
|
||||||
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
||||||
COMMAND mkdir ARGS -p ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/assets/
|
COMMAND mkdir ARGS -p ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/assets/
|
||||||
)
|
)
|
||||||
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
||||||
COMMAND cp ARGS ${LIBRARY_OUTPUT_PATH_ROOT}/libs/${ANDROID_NDK_ABI_NAME}/lib${DOLPHIN_EXE}.so ${CMAKE_SOURCE_DIR}/Source/Android/app/libs/${ANDROID_NDK_ABI_NAME}/
|
COMMAND cp ARGS ${LIBRARY_OUTPUT_PATH_ROOT}/libs/${ANDROID_NDK_ABI_NAME}/lib${DOLPHIN_EXE}.so ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/jniLibs/${ANDROID_NDK_ABI_NAME}/
|
||||||
)
|
)
|
||||||
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
||||||
COMMAND cp ARGS ${CMAKE_SOURCE_DIR}/Data/Sys/GC/* ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/assets/
|
COMMAND cp ARGS ${CMAKE_SOURCE_DIR}/Data/Sys/GC/* ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/assets/
|
||||||
|
|
Loading…
Reference in New Issue