forked from crosg/FloatMenuSample
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (31 loc) · 976 Bytes
/
build.gradle
File metadata and controls
36 lines (31 loc) · 976 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
34
35
36
apply plugin: 'com.android.application'
android {
namespace 'com.yw.game.floatmenu.demo'
compileSdk 36
defaultConfig {
applicationId "com.yw.game.floatmenu.demo"
minSdkVersion 14
targetSdkVersion 36
versionCode 1
versionName "1.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.13.2'
implementation 'androidx.appcompat:appcompat:1.6.1'
// 使用 JitPack 远程依赖
implementation 'com.github.ColdBrando:FloatMenuSample:v2.4.1'
// 本地源码依赖(已禁用)
// implementation project(':FloatMenu')
}