forked from guardianproject/tor-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (30 loc) · 793 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
33
// 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.3.1'
}
}
plugins {
id("io.github.gradle-nexus.publish-plugin").version("1.1.0")
}
allprojects {
repositories {
mavenCentral()
google()
}
}
ext {
minSdkVersion = 19
targetSdkVersion = 33
versionCode = 4711
versionName = "0.4.7.11"
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"
}