Skip to content

Commit 1b4a7f2

Browse files
committed
Fixing package names in Android files
1 parent e959acd commit 1b4a7f2

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
connection.project.dir=
2+
eclipse.preferences.version=1

android/src/main/java/com/reactnativecommunity/androidprogressbar/ProgressBarContainerView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This source code is licensed under the MIT license found in the
44
// LICENSE file in the root directory of this source tree.
55

6-
package com.facebook.react.views.progressbar;
6+
package com.reactnativecommunity.progressbar;
77

88
import javax.annotation.Nullable;
99

android/src/main/java/com/reactnativecommunity/androidprogressbar/ProgressBarShadowNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* LICENSE file in the root directory of this source tree.
66
*/
77

8-
package com.facebook.react.views.progressbar;
8+
package com.reactnativecommunity.progressbar;
99

1010
import android.util.SparseIntArray;
1111
import android.view.View;

android/src/main/java/com/reactnativecommunity/androidprogressbar/ReactProgressBarViewManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* LICENSE file in the root directory of this source tree.
66
*/
77

8-
package com.facebook.react.views.progressbar;
8+
package com.reactnativecommunity.progressbar;
99

1010
import javax.annotation.Nullable;
1111

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ project.ext.react = [
7676
entryFile: "example/index.js"
7777
]
7878

79-
apply from: "../../../node_modules/react-native/react.gradle"
79+
apply from: "../../../../node_modules/react-native/react.gradle"
8080

8181
/**
8282
* Set this to true to create two separate APKs instead of one:

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1",
8-
"start-example": "cd example && node node_modules/react-native/local-cli/cli.js start",
9-
"test-example": "cd example && jest"
8+
"start": "node node_modules/react-native/local-cli/cli.js start"
109
},
1110
"keywords": [
1211
"react-native",

0 commit comments

Comments
 (0)