Skip to content
This repository has been archived by the owner on Nov 9, 2018. It is now read-only.

Commit

Permalink
Add NDK install instructions
Browse files Browse the repository at this point in the history
Auditors: @KevinGrandon
  • Loading branch information
bbondy committed Oct 23, 2015
1 parent 2dafefe commit 0fa9f58
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Expand Up @@ -8,7 +8,7 @@ Either install the [Crashlytics/Fabric Android Studio plugin](http://try.crashly

##Building Link Bubble Free

Open `./Application/` in Android Studio and build.
Open `./Application/` in Android Studio and build. You'll need the NDK installed if you don't already have it, instructions below.

##Building release build

Expand All @@ -22,6 +22,23 @@ If you get an error about similar to:
Try uninstalling the application which already exists on your plugged in device.

##Installing the NDK

The following describes steps for installing the NDK on your system. It is specific to OS X, if you use another operating system the steps will be slightly different.

1. Download the NDK from: http://developer.android.com/ndk/downloads/index.html and select the appropriate package for your operating system
2. cd `~/Downloads`

This comment has been minimized.

Copy link
@Toyyozega

Toyyozega Jan 23, 2016

git clone git@github.com:brave/LinkBubble.git

3. Add execute permissions: `chmod a+x ./android-ndk-r10e-darwin-x86_64.bin`
4. Execute the binary: `./android-ndk-r10e-darwin-x86_64.bin`
5. This will extract a folder named something like `android-ndk-r10e/`
6. Move this folder to `~/Library/Android/ndk`
7. Edit your `local.properties` file in Android studio to point to the NDK location. An example `local.properties` looks like this:

```
sdk.dir=/Users/bbondy/Library/Android/sdk
ndk.dir=/Users/bbondy/Library/Android/ndk
```

##Telling getlocalization.com about new strings

1. Periodically upload the file `./Application/LinkBubble/src/main/res/values/strings.xml` to [getlocalization.com](https://www.getlocalization.com/LinkBubble/files/). getlocalization.com will determine which strings are new
Expand Down

0 comments on commit 0fa9f58

Please sign in to comment.