-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
53 lines (44 loc) · 1.42 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
/** ******************************************************************************
*
* Fonty - Android custom fonts made easy
*
* @author Marcin Orlowski <mail (#) marcinOrlowski (.) com>
* @copyright 2013-2022 2022 Marcin Orlowski
* @license https://opensource.org/licenses/Apache-2.0
* @link https://github.com/MarcinOrlowski/fonty
*
***************************************************************************** **/
apply plugin: 'com.github.ben-manes.versions'
ext {
compileSdkVersion = 33
targetSdkVersion = 33
minSdkVersion = 16
buildToolsVersion = '33.0.0'
}
buildscript {
ext.kotlinVersion = '1.6.20'
repositories {
google()
gradlePluginPortal()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
// https://github.com/ben-manes/gradle-versions-plugin
// Usage: gradlew dependencyUpdates task to check dependency versions
// also needs apply plugin: 'com.github.ben-manes.versions'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.44.0'
// jitpack.io
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
maven { url "https://jitpack.io" }
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}