Skip to content

Commit

Permalink
Release React SDK version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
briancaw committed Feb 27, 2016
1 parent 0799f44 commit ae4b263
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion AppboyProject/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,5 @@ dependencies {
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:0.19.+"
compile project(':appboy-react-bridge')
compile project(':react-native-appboy-sdk')
}
4 changes: 2 additions & 2 deletions AppboyProject/android/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rootProject.name = 'AppboyProject'

include ':app'
include ':appboy-react-bridge', ':app'
project(':appboy-react-bridge').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-appboy-sdk/android')
include ':react-native-appboy-sdk', ':app'
project(':react-native-appboy-sdk').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-appboy-sdk/android')
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.3.0
- Renames Android module to conform to rnpm standard.

## 0.2.0
- Refactors Android module to have the source directly under the `android` folder.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ const ReactAppboy = require('react-native-appboy-sdk');
// file: android/settings.gradle
...
include ':appboy-react-bridge'
project(':appboy-react-bridge').projectDir = new File(settingsDir, '../node_modules/react-native-appboy-sdk/android')
include ':react-native-android-sdk'
project(':react-native-android-sdk').projectDir = new File(settingsDir, '../node_modules/react-native-appboy-sdk/android')
```
```gradle
// file: android/build.gradle
Expand All @@ -65,7 +65,7 @@ allprojects {
dependencies {
...
compile project(':appboy-react-bridge')
compile project(':react-native-appboy-sdk')
}
```

Expand Down
2 changes: 1 addition & 1 deletion android/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<resources>
<string name="app_name">appboy-react-bridge</string>
<string name="app_name">react-native-appboy-sdk</string>
</resources>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-appboy-sdk",
"version": "0.2.0",
"version": "0.3.0",
"description": "Appboy SDK for React Native.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit ae4b263

Please sign in to comment.