File tree 2 files changed +19
-2
lines changed
2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ apply plugin: 'com.android.library'
2
2
// make sure this line comes *after* you apply the Android plugin
3
3
apply plugin : ' com.getkeepsafe.dexcount'
4
4
5
+ plugins {
6
+ id ' maven-publish'
7
+ }
8
+
5
9
android {
6
10
compileSdkVersion rootProject. ext. compileSdkVersion
7
11
buildToolsVersion rootProject. ext. buildToolsVersion
@@ -34,5 +38,16 @@ dependencies {
34
38
compile " com.android.support:support-annotations:${ supportLibraryVersion} "
35
39
}
36
40
37
- // for maven central deployment
38
- apply from : ' https://raw.githubusercontent.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle'
41
+ publishing {
42
+ publications {
43
+ release(MavenPublication ) {
44
+ groupId = ' com.github.AlticeLabsProjects:DebugOverlay-Android'
45
+ artifactId = ' DebugOverlay-Android-lib'
46
+ version = ' 0.0.0'
47
+
48
+ afterEvaluate {
49
+ from components. release
50
+ }
51
+ }
52
+ }
53
+ }
Original file line number Diff line number Diff line change
1
+ jdk :
2
+ - openjdk8
You can’t perform that action at this time.
0 commit comments