gradle.properties 1.8 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # Project-wide Gradle settings.
  2. # IDE (e.g. Android Studio) users:
  3. # Gradle settings configured through the IDE *will override*
  4. # any settings specified in this file.
  5. # For more details on how to configure your build environment visit
  6. # http://www.gradle.org/docs/current/userguide/build_environment.html
  7. # Specifies the JVM arguments used for the daemon process.
  8. # The setting is particularly useful for tweaking memory settings.
  9. # Default value: -Xmx10248m -XX:MaxPermSize=256m
  10. # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
  11. # When configured, Gradle will run in incubating parallel mode.
  12. # This option should only be used with decoupled projects. More details, visit
  13. # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
  14. # org.gradle.parallel=true
  15. # Android SDK version that will be used as the compile project
  16. PROP_COMPILE_SDK_VERSION=28
  17. # Android SDK version that will be used as the earliest version of android this application can run on
  18. PROP_MIN_SDK_VERSION=19
  19. # Android SDK version that will be used as the latest version of android this application has been tested on
  20. PROP_TARGET_SDK_VERSION=28
  21. # Android Build Tools version that will be used as the compile project
  22. PROP_BUILD_TOOLS_VERSION=28
  23. # List of CPU Archtexture to build that application with
  24. # Available architextures (armeabi-v7a | arm64-v8a | x86)
  25. # To build for multiple architexture, use the `:` between them
  26. # Example - PROP_APP_ABI=armeabi-v7a
  27. PROP_APP_ABI=armeabi-v7a
  28. # fill in sign information for release mode
  29. RELEASE_STORE_FILE=C:/Users/Candy/Desktop/edufound.keystore
  30. RELEASE_STORE_PASSWORD=edufound123
  31. RELEASE_KEY_ALIAS=edufound_key
  32. RELEASE_KEY_PASSWORD=edufound321
  33. android.injected.testOnly=false
  34. android.useAndroidX=true
  35. android.enableJetifier=false
  36. android.enableAdapter=true