The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.4KB

  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 10
  4. buildToolsVersion "26.0.0"
  5. externalNativeBuild {
  6. cmake {
  7. path "CMakeLists.txt"
  8. }
  9. }
  10. signingConfigs {
  11. release {
  12. storeFile file("${System.properties['user.home']}${File.separator}.android${File.separator}debug.keystore")
  13. storePassword "android"
  14. keyAlias "androiddebugkey"
  15. keyPassword "android"
  16. storeType "jks"
  17. }
  18. }
  19. defaultConfig {
  20. applicationId "com.juce.networkgraphicsdemo"
  21. minSdkVersion 10
  22. targetSdkVersion 10
  23. externalNativeBuild {
  24. cmake {
  25. arguments "-DANDROID_TOOLCHAIN=clang", "-DANDROID_PLATFORM=android-10", "-DANDROID_STL=c++_static", "-DANDROID_CPP_FEATURES=exceptions rtti", "-DANDROID_ARM_MODE=arm", "-DANDROID_ARM_NEON=TRUE"
  26. cFlags "-fsigned-char"
  27. cppFlags "-fsigned-char", "-std=c++11"
  28. }
  29. }
  30. }
  31. buildTypes {
  32. debug {
  33. initWith debug
  34. debuggable true
  35. jniDebuggable true
  36. }
  37. release {
  38. initWith release
  39. debuggable false
  40. jniDebuggable false
  41. signingConfig signingConfigs.release
  42. }
  43. }
  44. productFlavors {
  45. debug_ {
  46. ndk {
  47. abiFilters "armeabi", "armeabi-v7a", "x86"
  48. }
  49. externalNativeBuild {
  50. cmake {
  51. arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-Ofast", "-DCMAKE_C_FLAGS_DEBUG=-Ofast"
  52. }
  53. }
  54. }
  55. release_ {
  56. externalNativeBuild {
  57. cmake {
  58. arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3"
  59. }
  60. }
  61. }
  62. }
  63. variantFilter { variant ->
  64. def names = variant.flavors*.name
  65. if (names.contains ("debug_")
  66. && variant.buildType.name != "debug") {
  67. setIgnore(true)
  68. }
  69. if (names.contains ("release_")
  70. && variant.buildType.name != "release") {
  71. setIgnore(true)
  72. }
  73. }
  74. repositories {
  75. }
  76. dependencies {
  77. }
  78. }