forked from Alfresco/alfresco-android-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
132 lines (109 loc) · 5.12 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#
# Copyright (C) 2005-2016 Alfresco Software Limited.
#
# This file is part of Alfresco Mobile for Android.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
android.useAndroidX=true
android.enableJetifier=true
####################################################################
## DEFAULT BUILD VARIANT
####################################################################
# Current Version number of the application
VERSION_NAME=1.8.9
# Overriden by Continuous Integration System during build
VERSION_CODE=99999
## Unique ID of the application
APPLICATION_ID=org.alfresco.mobile.android.application
## Unique prefix ID for all application providers
PROVIDER_AUTHORITY=org.alfresco.mobile.android.provider
## Unique ID for application Android account
ACCOUNT_ID=com.alfresco.account
## Unique ID for sync adapter are responsible to manage all sync tasks
SYNC_ADAPTER=org.alfresco.mobile.android.provider.sync
FAVORITES_ADAPTER=org.alfresco.mobile.android.provider.favorites
####################################################################
## DEFAULT DEBUG BUILD VARIANT
####################################################################
## Unique prefix ID for all application providers
PROVIDER_AUTHORITY_DEBUG=org.alfresco.mobile.android.provider.debug
## Unique ID for application Android account
ACCOUNT_ID_DEBUG=com.alfresco.account.debug
## Unique ID for sync adapter are responsible to manage all sync tasks
SYNC_ADAPTER_DEBUG=org.alfresco.mobile.android.provider.debug.sync
FAVORITES_ADAPTER_DEBUG=org.alfresco.mobile.android.provider.debug.favorites
## Google Analytics Tracker key for Debug version
TRACKER_ID_DEBUG=TRACK_ID_DEBUG
####################################################################
## MAVEN CONSTANTS
####################################################################
# Maven Group ID
GROUP=org.alfresco.mobile.android.apps
####################################################################
## MODULE CONSTANTS
####################################################################
# Module BUILD Variant Publish
# This value is used to publish a specific module build variant
# Available value by default : release|debug
DEFAULT_PUBLISH=debug
####################################################################
## ALFRESCO CLOUD API CONSTANTS
####################################################################
# Alfresco CLOUD OAUTH information
# For more information : https://www.alfresco.com/develop/cloud/signup
#
# By default those values are private and can't be defined inside the application.
# They must be defined via command line of via the gradle.properties file inside <USER_HOME>/.gradle directory
OAUTH_API_KEY=OAUTH_API_KEY
OAUTH_API_SECRET=OAUTH_API_SECRET
OAUTH_CALLBACK=OAUTH_CALLBACK
OAUTH_SCOPE=public_api
####################################################################
## 3RD PARTY CONSTANTS
####################################################################
####################################################################
## GOOGLE ANALYTICS
####################################################################
## Google Analytics Tracker key
TRACKER_ID=TRACKER_ID
####################################################################
## FIREBASE
####################################################################
GOOGLE_SERVICES_FILE=GOOGLE_SERVICES_FILE
####################################################################
## NEXUS
####################################################################
NEXUS_USERNAME=NEXUS_USERNAME
NEXUS_PASSWORD=NEXUS_PASSWORD
####################################################################
## CODE_SIGNING
####################################################################
RELEASE_STORE_FILE=RELEASE_STORE_FILE
RELEASE_STORE_PASSWORD=RELEASE_STORE_PASSWORD
RELEASE_KEY_ALIAS=RELEASE_KEY_ALIAS
RELEASE_KEY_PASSWORD=RELEASE_KEY_PASSWORD