forked from RikkaApps/Sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (48 loc) · 1.28 KB
/
build.gradle
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
apply plugin: 'idea'
idea.module {
excludeDirs += file('out')
resourceDirs += file('template')
resourceDirs += file('scripts')
}
buildscript {
apply from: 'api/manifest.gradle'
ext.kotlinVersion = '1.7.10'
repositories {
mavenCentral()
google()
// In case newly published library not yet synced with maven central
maven {
url("https://s01.oss.sonatype.org/content/repositories/releases/")
content {
includeGroup("dev.rikka.tools.refine")
}
}
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'dev.rikka.tools.refine:gradle-plugin:3.1.1'
}
}
allprojects {
repositories {
mavenCentral()
google()
// In case newly published library not yet synced with maven central
maven {
url("https://s01.oss.sonatype.org/content/repositories/releases/")
content {
includeGroupByRegex("dev.rikka.*")
}
}
mavenLocal()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 23
targetSdkVersion = 31
}