Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release @ccaruceru's changes #8

Open
BrantApps opened this issue Mar 17, 2022 · 6 comments
Open

Release @ccaruceru's changes #8

BrantApps opened this issue Mar 17, 2022 · 6 comments

Comments

@BrantApps
Copy link
Owner

Following the PR from @ccaruceru publish to Gradle the updated code.

@courville
Copy link

Would be nice indeed to get latest fixes published https://plugins.gradle.org/plugin/app.brant.amazonappstorepublisher

@courville
Copy link

Any plan to release current version of the code?

@percula
Copy link

percula commented Mar 17, 2023

Since the repo owner isn't responding, you can get the latest master release using Jitpack which builds directly off the master branch.

Replace the dependency with

buildscript {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }

    dependencies {
//        classpath "app.brant:amazonappstorepublisher:0.1.0" <-- COMMENT THIS OUT
        classpath 'com.github.BrantApps.gradle-amazon-app-store-publisher:amazonappstorepublisher:master-SNAPSHOT' // Add this
    }
}

@courville
Copy link

@percula thx for the tip and yes jitpack is awesome for this.
However, in my case, I use it as a gradle plugin:

plugins {
    id "app.brant.amazonappstorepublisher" version "0.1.0"
}

I am not sure jitpack applies in this case.

@percula
Copy link

percula commented Mar 20, 2023

@courville It worked for me. The snippet above is from the project-level build.gradle file. I use the older syntax to import plugins (see below), but you should be able to mix and match the new way with the old, or perhaps there's a way to accomplish the same with the new syntax.

The app's build.gradle file

apply plugin: 'app.brant.amazonappstorepublisher'

@courville
Copy link

@percula: indeed with your inputs it works now. Thanks for your feedback.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants