forked from ThanosFisherman/WifiUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
57 lines (46 loc) · 1.6 KB
/
build.gradle
File metadata and controls
57 lines (46 loc) · 1.6 KB
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
57
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
compileSdkVersion = 28
buildToolsVersion = '28.0.3'
minSdkVersion = 15
targetSdkVersion = 28
publishVersionName = '1.4.0'
publishVersionCode = 12
currentVersionDesc = 'WifiUtils current version'
bintrayRepo = 'maven'
bintrayName = 'wifiutils' // Has to be same as your library module name
publishedGroupId = 'com.thanosfisherman.wifiutils'
libraryName = 'WifiUtils'
artifact = 'wifiutils' // Has to be same as your library module name
libraryDescription = 'Library that makes it easy to Connect to WiFi hotspots using ssid and/or bssid'
// Your github repo link
siteUrl = 'https://github.com/ThanosFisherman/WifiUtils'
gitUrl = 'https://github.com/ThanosFisherman/WifiUtils.git'
githubRepository = 'ThanosFisherman/WifiUtils'
developerId = 'thanosfisherman'
developerName = 'Thanos Psaridis'
developerEmail = 'psaridis@gmail.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}