Merge pull request #207 from nfl/fix-packagename-android

fix package name mismatch for Android
This commit is contained in:
Stanisław Chmiela 2016-06-08 11:07:04 +02:00
commit 5221c948d5
3 changed files with 7 additions and 8 deletions

View File

@ -3,5 +3,3 @@ rootProject.name = 'VideoPlayer'
include ':app'
include ':react-native-video'
project(':react-native-video').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android')
include ':RCTVideo', ':app'
project(':RCTVideo').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android')

View File

@ -29,20 +29,21 @@ If you would like to allow other apps to play music over your video component, a
#### Android
First, copy your video file to `android/app/src/main/res/raw/`, then
make the following additions to the given files:
Install [rnpm](https://github.com/rnpm/rnpm) and run `rnpm link react-native-video`
Or if you have trouble using [rnpm](https://github.com/rnpm/rnpm), make the following additions to the given files manually:
**android/settings.gradle**
```
include ':RCTVideo', ':app'
project(':RCTVideo').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android')
include ':react-native-video'
project(':react-native-video').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android')
```
**android/app/build.gradle**
```
dependencies {
...
compile project(':RCTVideo')
compile project(':react-native-video')
}
```

View File

@ -1,3 +1,3 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.brentvatne.RCTVideo">
package="com.brentvatne.react">
</manifest>