diff --git a/.gitignore b/.gitignore index c2f569d74..e9bc91646 100644 --- a/.gitignore +++ b/.gitignore @@ -70,5 +70,8 @@ typings/ # VSCode .history +# WebStorm +.idea/ + # generated files lib/ diff --git a/templates/native-library/example/android/app/src/debug/java/com/{%= project.name %}Example/ReactNativeFlipper.java b/templates/native-library/example/android/app/src/debug/java/com/example/{%= project.package %}/ReactNativeFlipper.java similarity index 100% rename from templates/native-library/example/android/app/src/debug/java/com/{%= project.name %}Example/ReactNativeFlipper.java rename to templates/native-library/example/android/app/src/debug/java/com/example/{%= project.package %}/ReactNativeFlipper.java diff --git a/templates/native-library/example/android/app/src/main/java/com/{%= project.name %}Example/MainActivity.java b/templates/native-library/example/android/app/src/main/java/com/example/{%= project.package %}/MainActivity.java similarity index 100% rename from templates/native-library/example/android/app/src/main/java/com/{%= project.name %}Example/MainActivity.java rename to templates/native-library/example/android/app/src/main/java/com/example/{%= project.package %}/MainActivity.java diff --git a/templates/native-library/example/android/app/src/main/java/com/{%= project.name %}Example/MainApplication.java b/templates/native-library/example/android/app/src/main/java/com/example/{%= project.package %}/MainApplication.java similarity index 100% rename from templates/native-library/example/android/app/src/main/java/com/{%= project.name %}Example/MainApplication.java rename to templates/native-library/example/android/app/src/main/java/com/example/{%= project.package %}/MainApplication.java