-
Notifications
You must be signed in to change notification settings - Fork 0
/
trapeze-config.yaml
62 lines (62 loc) · 1.64 KB
/
trapeze-config.yaml
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
platforms:
android:
appName: Aurorapp
packageName: io.aurora.start
versionName: 1.3.1
versionCode: 2019
incrementVersionCode: false
manifest:
- file: AndroidManifest.xml
target: manifest
inject: |
<!-- Added with Trapeze! -->
<!-- https://capacitorjs.com/docs/apis/geolocation -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
- file: AndroidManifest.xml
target: manifest
inject: |
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
- file: AndroidManifest.xml
target: manifest
inject: |
<uses-feature android:name="android.hardware.location.gps" />
res:
- path: values
file: styles.xml
source: ./src/styles.xml
gradle:
- file: app/build.gradle
target:
android:
buildTypes:
release:
minifyEnabled:
replace:
minifyEnabled: true
- file: app/build.gradle
target:
android:
buildTypes:
release:
ndk:
debugSymbolLevel:
replace:
debugSymbolLevel: "'FULL'"
- file: variables.gradle
target:
ext:
targetSdkVersion:
replace:
targetSdkVersion: '33'
- file: variables.gradle
target:
ext:
compileSdkVersion:
replace:
compileSdkVersion: '33'
- file: variables.gradle
target:
ext:
minSdkVersion:
replace:
minSdkVersion: '22'