File tree Expand file tree Collapse file tree 7 files changed +22
-49
lines changed Expand file tree Collapse file tree 7 files changed +22
-49
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,7 @@ captures/
34
34
35
35
# IntelliJ
36
36
* .iml
37
- .idea /workspace.xml
38
- .idea /tasks.xml
39
- .idea /gradle.xml
40
- .idea /assetWizardSettings.xml
41
- .idea /dictionaries
42
- .idea /libraries
43
- .idea /caches
37
+ .idea /*
44
38
45
39
# Keystore files
46
40
# Uncomment the following line if you do not want to check your keystore files in.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
7
7
8
8
}
9
9
dependencies {
10
- classpath ' com.android.tools.build:gradle:3.5 .2'
10
+ classpath ' com.android.tools.build:gradle:4.2 .2'
11
11
12
12
// NOTE: Do not place your application dependencies here; they belong
13
13
// in the individual module build.gradle files
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-5.4.1 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.3.3 -all.zip
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
+ apply plugin : ' maven-publish'
3
+
4
+ group = ' com.github.FWink'
5
+ version = ' 1.0.2'
2
6
3
7
android {
4
8
compileSdkVersion 29
5
9
buildToolsVersion " 29.0.2"
6
10
defaultConfig {
7
11
minSdkVersion 9
8
12
targetSdkVersion 29
9
- versionCode 10000001
10
- versionName " 1.0.1 "
13
+ versionCode 10000002
14
+ versionName version
11
15
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
12
16
}
13
17
buildTypes {
@@ -20,8 +24,18 @@ android {
20
24
21
25
dependencies {
22
26
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
23
- testImplementation ' junit:junit:4.12'
24
- androidTestImplementation ' androidx.test.ext:junit:1.1.1'
25
- androidTestImplementation ' androidx.test.espresso:espresso-core:3.2.0'
26
27
implementation ' androidx.annotation:annotation:1.1.0'
27
28
}
29
+
30
+ afterEvaluate {
31
+ publishing {
32
+ publications {
33
+ release(MavenPublication ) {
34
+ from components. release
35
+ groupId = group
36
+ artifactId = ' android-stunnel-lib'
37
+ version = version
38
+ }
39
+ }
40
+ }
41
+ }
You can’t perform that action at this time.
0 commit comments