gradle.properties 736 B

12345678910111213141516171819
  1. # To set the application display name, only define either `app.name` or `app.name_byte_array`.
  2. # For a rule of thumb:
  3. # * Use `app.name` if your app name doesn't contain any non-ANSI characters.
  4. # * Otherwise, convert your app name to UTF-8 byte array, comma delimited, and put
  5. # it in `app.name_byte_array`
  6. #app.name=LÖVE for Android
  7. app.name_byte_array=76,195,150,86,69,32,102,111,114,32,65,110,100,114,111,105,100
  8. app.application_id=org.love2d.android
  9. app.orientation=landscape
  10. app.version_code=33
  11. app.version_name=12.0
  12. # No need to modify anything past this line!
  13. android.enableJetifier=false
  14. android.useAndroidX=true
  15. android.defaults.buildfeatures.buildconfig=true
  16. android.nonTransitiveRClass=true
  17. android.nonFinalResIds=true