Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
treacher committed Mar 15, 2015
1 parent f94beaa commit 18ec01e
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,14 @@ public class ExampleShare : MonoBehaviour {
}
}
```
* Add the following to Plugins/Android/AndroidManifest.xml inside your project:
```XML
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"></uses-permission>
```
### Troubleshooting
#### Android:
* INSTALL_FAILED_CONTAINER_ERROR: This comes up all the time for me. What you need to do is unistall the application on the android phone if it is already installed and then erase the SD card on the emulator. You can do this by going to Settings->Storage->Erase SD card
* INSTALL_FAILED_CONTAINER_ERROR: When exporting the project to Android Studio change:
``` android:installLocation="preferExternal" ```
to:
``` android:installLocation="auto" ```
on the following line:
```
<manifest xmlns:android="http:https://schemas.android.com/apk/res/android" package="com.frispgames.frispsocialunityasset" android:versionName="1.0" android:versionCode="1" android:installLocation="preferExternal">
```

0 comments on commit 18ec01e

Please sign in to comment.