-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathbuild.gradle
More file actions
80 lines (71 loc) · 2.51 KB
/
build.gradle
File metadata and controls
80 lines (71 loc) · 2.51 KB
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
plugins {
id 'com.android.application'
id "com.starter.easylauncher" version "4.0.0"
}
android {
signingConfigs {
digiview {
try{
storeFile file(digiviewStoreFile)
storePassword digiviewStorePassword
keyPassword digiviewKeyPassword
keyAlias digiviewKeyAlias
}
catch (ex) {
println("You should define mStoreFile, mStorePassword, mKeyPassword and mKeyAlias in ~/.gradle/gradle.properties : "+ ex.message)
}
}
}
compileSdk 33
buildToolsVersion '34.0.0'
defaultConfig {
applicationId "com.fpvout.digiview"
minSdkVersion 21
targetSdkVersion 33
versionCode 3
versionName '1.0.0'
resConfigs 'en', 'de', 'fr', 'es', 'zh', 'pt'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
debug {
applicationIdSuffix '.debug'
versionNameSuffix '-debug'
signingConfig debug.signingConfig
debuggable true
}
alpha {
//applicationIdSuffix '.alpha'
versionNameSuffix '-alpha'
signingConfig signingConfigs.digiview
}
beta {
//applicationIdSuffix '.beta'
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
versionNameSuffix '-beta'
signingConfig signingConfigs.digiview
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.digiview
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'com.fpvout.digiview'
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.android.exoplayer:exoplayer:2.19.1'
implementation 'io.sentry:sentry-android:4.3.0'
implementation 'androidx.preference:preference:1.2.1'
testImplementation 'junit:junit:4.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}