diff options
| author | mo khan <mo@mokhan.ca> | 2016-12-22 13:00:18 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2016-12-22 13:00:18 -0700 |
| commit | 219ae18175899b7b4cc5db2748ad7376223ab243 (patch) | |
| tree | 3fe03a1eb74a30db47456141c41b03130aeaf6a7 /android/app/src/main/java/com/stronglifters/MainActivity.java | |
| parent | 91fb97b77a4bc6670f7beed102514b46fe2e3b55 (diff) | |
fix the android package name.
Diffstat (limited to 'android/app/src/main/java/com/stronglifters/MainActivity.java')
| -rw-r--r-- | android/app/src/main/java/com/stronglifters/MainActivity.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/android/app/src/main/java/com/stronglifters/MainActivity.java b/android/app/src/main/java/com/stronglifters/MainActivity.java new file mode 100644 index 0000000..5fe8e04 --- /dev/null +++ b/android/app/src/main/java/com/stronglifters/MainActivity.java @@ -0,0 +1,15 @@ +package com.stronglifters.app; + +import com.facebook.react.ReactActivity; + +public class MainActivity extends ReactActivity { + + /** + * Returns the name of the main component registered from JavaScript. + * This is used to schedule rendering of the component. + */ + @Override + protected String getMainComponentName() { + return "StrongLifters"; + } +} |
