Customize boilerplate for project

Add a free license, write readme, change app and project name, update
info in package.json.
This commit is contained in:
2017-02-03 00:26:46 -07:00
parent 367ec26e79
commit 49d649a3b3
12 changed files with 75 additions and 28 deletions

View File

@@ -46,13 +46,13 @@ android_library(
android_build_config(
name = 'build_config',
package = 'com.counter',
package = 'com.exactresistorcalculator',
)
android_resource(
name = 'res',
res = 'src/main/res',
package = 'com.counter',
package = 'com.exactresistorcalculator',
)
android_binary(

View File

@@ -88,7 +88,7 @@ android {
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.counter"
applicationId "com.exactresistorcalculator"
minSdkVersion 16
targetSdkVersion 22
versionCode 1

View File

@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.counter">
package="com.exactresistorcalculator">
<uses-permission android:name="android.permission.INTERNET" />

View File

@@ -1,4 +1,4 @@
package com.counter;
package com.exactresistorcalculator;
import com.facebook.react.ReactActivity;
@@ -10,6 +10,6 @@ public class MainActivity extends ReactActivity {
*/
@Override
protected String getMainComponentName() {
return "Counter";
return "exactresistorcalculator";
}
}

View File

@@ -1,4 +1,4 @@
package com.counter;
package com.exactresistorcalculator;
import android.app.Application;
import android.util.Log;

View File

@@ -1,3 +1,3 @@
<resources>
<string name="app_name">Counter</string>
<string name="app_name">Exact Resistor Calculator</string>
</resources>

View File

@@ -1,4 +1,4 @@
rootProject.name = 'Counter'
rootProject.name = 'exactresistorcalculator'
include ':app'