Compare commits

...
Author SHA1 Message Date
Martin Konicek 12b92c1520 Temporarily depend on 0.12 Android binaries from JCenter repo
Published version 0.12.0 of the Android binaries. Naming the
version 0.12.0-SNAPSHOT or 0.12.0-rc is not supported,
will come up with a better version scheme for next release.

The version has been published to Maven Central:
https://repo1.maven.org/maven2/com/facebook/react/react-native/

However, after more than an hour it's still not available and
Gradle won't fetch it because it hasn't been mirrored to JCenter:
http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22react-native%22
https://bintray.com/bintray/jcenter/com.facebook.react%3Areact-native/view

As a workaround to make it available now, I published it under my
account which makes it available immediately:
https://bintray.com/mkonicek/maven/react-native/view

I also submitted a request to Bintray to publish the binaries here:
https://bintray.com/bintray/jcenter/com.facebook.react%3Areact-native/view

Once 0.12.0 propagates, we can revert this commit.

None of this affects the npm versioning. The npm version is 0.12.0-rc.
2015-09-24 23:05:09 +01:00
Martin Konicek 77cde0c29c [0.12.0-rc] 2015-09-24 22:48:44 +01:00
4 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "React"
s.version = "0.8.0"
s.version = "0.12.0-rc"
s.summary = "Build high quality mobile apps using React."
s.description = <<-DESC
React Native apps are built using the React JS
@@ -25,5 +25,5 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.facebook.react:react-native:0.11.+'
compile 'com.facebook.react:react-native:0.12.+'
}
@@ -16,5 +16,8 @@ allprojects {
repositories {
mavenLocal()
jcenter()
jcenter {
url "http://dl.bintray.com/mkonicek/maven"
}
}
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "0.8.0",
"version": "0.12.0-rc",
"description": "A framework for building native apps using React",
"license": "BSD-3-Clause",
"repository": {