-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathbuild.gradle
32 lines (29 loc) · 869 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.24.0' // NEW
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.10.2' // NEW
}
}
allprojects {
repositories {
mavenCentral()
google()
}
}
ext {
minSdkVersion = 21
targetSdkVersion = 34
versionCode = 4813
versionName = "0.4.8.13"
LIBRARY_GROUP = "info.guardianproject"
LIBRARY_ARTIFACT_ID = "tor-android"
LIBRARY_VERSION_NAME = versionName
LIBRARY_URL = "https://github.com/guardianproject/tor-android"
LIBRARY_GIT_URL = "https://github.com/guardianproject/tor-android"
}