-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojectConfig.gradle
More file actions
33 lines (27 loc) · 839 Bytes
/
projectConfig.gradle
File metadata and controls
33 lines (27 loc) · 839 Bytes
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
ext.config = [
applicationId : "com.whitpet.projecttemplate",
appName : "ProjectTemplate",
appVersion : [
major: 1,
minor: 0,
patch: 0,
], // https://semver.org
minSdkVersion : 24,
compileSdkVersion : 35,
targetSdkVersion : 35,
buildToolsVersion : "35.0.0",
supportedLocales : ["en"],
availableAbi : ["arm64-v8a", "armeabi-v7a", "x86", "x86_64"],
javaVersion : JavaLanguageVersion.of(21),
debug : [
suffix : "debug",
withSuffix : true,
withReleaseKey : false,
obfuscationEnabled: false,
],
release : [
debuggable : false,
withDebugKey : false,
obfuscationEnabled: true,
],
]