-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
executable file
·46 lines (41 loc) · 2.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
41
42
43
44
45
46
#
# Properties for the build which can be overridden locally.
#
# This allows build keys to be set where the app is being built in
# a gradle.properties override. See;
#
# https://docs.gradle.org/current/userguide/build_environment.html
#
# for more information on the overriding system.
#
###############################################################################
# App variables.
###############################################################################
# The server client ID used by your API server. This app uses this ID to request an auth2 code that
# the server can exchange for a valid Google API access token. This ID needs to be generated from
# your developer console (https://console.developers.google.com) as a web application client ID.
AppGoogleApiServerClientId = UNDEFINED
# The service account used by gradle-play-publisher to publish the application to the play store.
# This is only required if you will be using this plugin. A service account can be setup by
# following the guide found at https://developers.google.com/android-publisher/getting_started
AppPlayStoreServiceAccount = UNDEFINED
AppPlayStorePk12Location = ""
# The location of the keystore, alias and passwords used when creating a debug build. The values
# below are just defaults, these will need to be set to your own values. Make sure you generate a
# new keystore and place it under the keystore folder or point this to the location of your debug
# keystore.
AppKeystoreDebugLocation = keystore/debug.jks
AppDebugKeyAlias = androiddebugkey
AppDebugStorePassword = android
AppDebugKeyPassword = android
# The location of the keystore, alias and passwords used when creating a release build. The values
# below are just defaults, these will need to be set to your own values. Make sure you generate a
# new keystore and place it under the keystore folder or point this to the location of your release
# keystore.
AppKeystoreReleaseLocation = keystore/release.keystore
AppReleaseKeyAlias = UNDEFINED
AppReleaseStorePassword = UNDEFINED
AppReleaseKeyPassword = UNDEFINED
# Gradle performance variables
org.gradle.jvmargs=-Xmx4G -XX:MaxPermSize=512m
org.gradle.parallel=true