Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWoodblock committed Nov 22, 2021
1 parent 1a45aea commit 2fd388c
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion appsalvager/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'com.vanniktech.maven.publish'
id 'org.jetbrains.dokka'
}

Expand Down Expand Up @@ -32,5 +33,4 @@ dokkaHtml.configure {
noAndroidSdkLink.set(false)
}
}
}
}
20 changes: 20 additions & 0 deletions appsalvager/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Maven stuff
POM_NAME=AppSalvager
POM_ARTIFACT_ID=appsalvager
POM_PACKAGING=aar
GROUP=io.github.drbreen
VERSION_NAME=0.1.0

POM_DESCRIPTION="Safe mode", or "salvage mode" for Android apps that experience cyclic app startup crashes.

POM_URL=https://github.com/DrBreen/AppSalvager
POM_SCM_URL=https://github.com/DrBreen/AppSalvager
POM_SCM_CONNECTION=scm:git:git://https://github.com/DrBreen/AppSalvager.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/DrBreen/AppSalvager.git

POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo

POM_DEVELOPER_ID=alexwoodblock
POM_DEVELOPER_NAME=Alexander Leontev
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,19 @@ buildscript {
dependencies {
classpath "com.android.tools.build:gradle:7.0.3"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20"
classpath "com.vanniktech:gradle-maven-publish-plugin:0.18.0"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.5.31"
}
}

allprojects {
plugins.withId("com.vanniktech.maven.publish") {
mavenPublish {
sonatypeHost = "S01"
}
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

0 comments on commit 2fd388c

Please sign in to comment.