Skip to content

Commit

Permalink
fix(android): remove bintray publishing plugin to fix Gradle 6+ issues (
Browse files Browse the repository at this point in the history
  • Loading branch information
carlpoole authored May 29, 2020
1 parent cb77a0b commit b584b00
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 28 deletions.
18 changes: 0 additions & 18 deletions android/capacitor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,12 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.1'
classpath 'com.novoda:bintray-release:0.9.1'
}
}

tasks.withType(Javadoc).all { enabled = false }

apply plugin: 'com.android.library'
apply plugin: 'com.novoda.bintray-release'

android {
compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 29
Expand Down Expand Up @@ -72,20 +70,4 @@ dependencies {
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
implementation "org.apache.cordova:framework:$cordovaAndroidVersion"
}

def version = System.getenv("BINTRAY_PKG_VERSION")

publish {
userOrg = 'ionic-team'
repoName = 'capacitor'
groupId = 'ionic-team'
artifactId = 'capacitor-android'
if (version != null) {
publishVersion = System.getenv("BINTRAY_PKG_VERSION")
} else {
publishVersion = '0.0.0'
}
desc = 'Capacitor Android Runtime'
website = 'https://github.com/ionic-team/capacitor'
}
1 change: 0 additions & 1 deletion scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,4 @@ git push --follow-tags origin master
#rm -rf capacitor-ios

# Do the actual native deploys second, because they require tags/releases in github
bash scripts/deploy/android.sh
bash scripts/deploy/pods.sh
9 changes: 0 additions & 9 deletions scripts/deploy/android.sh

This file was deleted.

0 comments on commit b584b00

Please sign in to comment.