forked from JackyAndroid/AndroidTVLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (40 loc) · 1.28 KB
/
Copy pathbuild.gradle
File metadata and controls
48 lines (40 loc) · 1.28 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
apply plugin: 'com.android.application'
//apply plugin: 'kotlin-android'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.jacky.launcher"
minSdkVersion 17
targetSdkVersion 27
versionCode 21
versionName "2.1"
}
signingConfigs {
debug {
}
release {
storeFile file("../AndroidTVLauncherKey.jks")
storePassword "123456"
keyAlias "launcher"
keyPassword "123456"
}
}
buildTypes {
release {
minifyEnabled false
shrinkResources false
signingConfig signingConfigs.release
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:support-v4:27.0.1'
implementation "com.android.support:appcompat-v7:27.0.1"
implementation 'com.android.support:leanback-v17:27.0.1'
implementation 'com.android.support:preference-leanback-v17:27.0.1'
implementation 'fm.jiecao:jiecaovideoplayer:4.6.4'
implementation 'com.github.bumptech.glide:glide:3.4.+'
// implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}