Skip to content

Commit c35874e

Browse files
committed
refactor
1 parent a781fd4 commit c35874e

File tree

14,462 files changed

+75916
-999661
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

14,462 files changed

+75916
-999661
lines changed

.flowconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
[include]
2828

2929
[libs]
30-
Libraries/react-native/react-native-interface.js
30+
node_modules/react-native/Libraries/react-native/react-native-interface.js
31+
node_modules/react-native/flow
3132
flow/
3233

3334
[options]

.gitignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ DerivedData
2121
*.ipa
2222
*.xcuserstate
2323
project.xcworkspace
24-
ios/Pods
25-
ios/F8v2.xcworkspace
2624

2725
# Android/IJ
2826
#
27+
*.iml
2928
.idea
3029
.gradle
3130
local.properties
32-
*.iml
3331

3432
# node.js
3533
#
3634
node_modules/
3735
npm-debug.log
3836

39-
# RN
40-
/release
41-
/logs
37+
# BUCK
38+
buck-out/
39+
\.buckd/
40+
android/app/libs
41+
android/keystores/debug.keystore

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ android_library(
4646

4747
android_build_config(
4848
name = 'build_config',
49-
package = '<%= package %>',
49+
package = 'com.demo2',
5050
)
5151

5252
android_resource(
5353
name = 'res',
5454
res = 'src/main/res',
55-
package = '<%= package %>',
55+
package = 'com.demo2',
5656
)
5757

5858
android_binary(
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ android {
8787
buildToolsVersion "23.0.1"
8888

8989
defaultConfig {
90-
applicationId "<%= package %>"
90+
applicationId "com.demo2"
9191
minSdkVersion 16
9292
targetSdkVersion 22
9393
versionCode 1
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package <%= package %>;
1+
package com.demo2;
22

33
import com.facebook.react.ReactActivity;
44

@@ -10,6 +10,6 @@ public class MainActivity extends ReactActivity {
1010
*/
1111
@Override
1212
protected String getMainComponentName() {
13-
return "<%= name %>";
13+
return "demo2";
1414
}
1515
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package <%= package %>;
1+
package com.demo2;
22

33
import android.app.Application;
44
import android.util.Log;

0 commit comments

Comments
 (0)