Skip to content

Commit 8ec152f

Browse files
committed
🚀 v0.2.2
1 parent 81516f3 commit 8ec152f

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A set of UI components, in the purpose of introducing [Material Design][md] to a
77

88
[npm-badge]: https://img.shields.io/npm/v/react-native-material-kit.svg
99
[npm]: https://www.npmjs.com/package/react-native-material-kit
10-
[rn-badge]: https://img.shields.io/badge/react--native-v0.12.x-05A5D1.svg
10+
[rn-badge]: https://img.shields.io/badge/react--native-v0.13.x-05A5D1.svg
1111
[rn]: https://facebook.github.io/react-native
1212
[md]: http://www.google.com/design/spec/material-design/introduction.html
1313
[license-badge]: https://img.shields.io/dub/l/vibe-d.svg
@@ -51,8 +51,7 @@ Now run `pod install`. This will create an Xcode workspace containing all necess
5151
5252
```
5353
1. Add `compile project(':RNMaterialKit')` to your `android/app/build.gradle`
54-
1. Add `import com.github.xinthink.rnmk.ReactMaterialKitPackage; ` in `MainActivity.java` imports
55-
1. Add `ReactMaterialKitPackage` to your `ReactInstanceManager` instance, in your `MainActivity`:
54+
1. Import `com.github.xinthink.rnmk.ReactMaterialKitPackage` and register it to the `ReactInstanceManager`, in your `MainActivity` (or equivalent):
5655
```java
5756
mReactInstanceManager = ReactInstanceManager.builder()
5857
.setApplication(getApplication())

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ repositories {
3030
}
3131

3232
dependencies {
33-
provided 'com.facebook.react:react-native:0.12.+'
33+
provided 'com.facebook.react:react-native:0.13.+'
3434
//compile 'com.android.support:design:23.0.1'
3535
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-material-kit",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Bringing Material Design to React Native",
55
"main": "lib/index.js",
66
"author": "Yingxin Wu <[email protected]>",
@@ -26,7 +26,7 @@
2626
"url": "git://github.com/xinthink/react-native-material-kit.git"
2727
},
2828
"peerDependencies": {
29-
"react-native": ">=0.12.0 <1.0.0"
29+
"react-native": ">=0.13.0 <1.0.0"
3030
},
3131
"devDependencies": {
3232
"babel-eslint": "^4.0.10",

react-native-material-kit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "react-native-material-kit"
3-
s.version = "0.2.1"
3+
s.version = "0.2.2"
44
s.summary = "Introducing Material Design to apps built with React Native."
55
s.requires_arc = true
66
s.author = { 'xinthink' => '[email protected]' }

0 commit comments

Comments
 (0)