Hello there!
In the past I had created an old project with 1.4.2 and here is how the relevant build.gradle looked like for me:
buildscript {
repositories {
jcenter()
mavenLocal()
}
dependencies {
// Multi-OS Engine plugin
classpath group: 'org.multi-os-engine.community', name: 'moe-gradle', version: '1.4.+'
}
}
When I try to build the project in a new machine, I get this:
Could not GET ‘https://dl.bintray.com/multi-os-engine/maven/org/multi-os-engine/moe-sdk/1.4.2/moe-sdk-1.4.2.pom’. Received status code 403 from server: Forbidden
I understand that the jcenter() repository has gone away, but is there another repository I can use to build the project?
I could migrate to 1.7.4 but I would prefer if I could build with 1.4.2 in the short run.
Thanks!