-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathgradle.properties
40 lines (32 loc) · 1.13 KB
/
gradle.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
android.nonTransitiveRClass=true
android.enableJetifier=false
android.useAndroidX=false
# Project name in Android Studio
projectName=raymob
# Name of your project
app.name=raymob
app.native_library_name=raymob
app.application_id=com.raylib.raymob
# Can be: LAUNCHER | GAME | HOME | etc...
app.category=LAUNCHER
# Screen orientation [ portrait | landscape ]
app.orientation=landscape
# Project version
app.version_name=1.0
app.version_code=1
# OpenGL config (version can be 'ES20' | 'ES30' | 'ES31' | 'ES32')
# NOTE: This will modify the manifest so that your app is not offered on the
# PlayStore to devices that do not support the requested version.
gl.version=ES30
# Display settings
display.keep_on=true
display.immersive=true
display.into_cutout=true
# Required device features
# These parameters indicate whether the corresponding features are mandatory.
# For example, the app will not be proposed on the PlayStore for devices that do not support features marked as true.
requirements.internet=false
requirements.vibration=false
requirements.gyroscope=false
requirements.accelerometer=false