├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reactnativeandroidweardemo │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ ├── WearCommunicationModule.java │ │ │ └── WearCommunicationReactPackage.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties ├── settings.gradle └── wear │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── reactnativeandroidweardemo │ │ └── MainActivity.java │ └── res │ ├── layout │ └── activity_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ └── values │ └── strings.xml ├── demo.gif ├── index.android.js ├── index.ios.js ├── ios ├── reactNativeAndroidWearDemo-tvOS │ └── Info.plist ├── reactNativeAndroidWearDemo-tvOSTests │ └── Info.plist ├── reactNativeAndroidWearDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── reactNativeAndroidWearDemo-tvOS.xcscheme │ │ └── reactNativeAndroidWearDemo.xcscheme ├── reactNativeAndroidWearDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── reactNativeAndroidWearDemoTests │ ├── Info.plist │ └── reactNativeAndroidWearDemoTests.m ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeandroidweardemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/src/main/java/com/reactnativeandroidweardemo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeandroidweardemo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/src/main/java/com/reactnativeandroidweardemo/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeandroidweardemo/WearCommunicationModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/src/main/java/com/reactnativeandroidweardemo/WearCommunicationModule.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeandroidweardemo/WearCommunicationReactPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/src/main/java/com/reactnativeandroidweardemo/WearCommunicationReactPackage.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/wear/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/wear/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/wear/build.gradle -------------------------------------------------------------------------------- /android/wear/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/wear/proguard-rules.pro -------------------------------------------------------------------------------- /android/wear/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/wear/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/wear/src/main/java/com/reactnativeandroidweardemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/wear/src/main/java/com/reactnativeandroidweardemo/MainActivity.java -------------------------------------------------------------------------------- /android/wear/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/wear/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/wear/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/wear/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/wear/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/wear/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/wear/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/wear/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/wear/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/wear/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/wear/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/android/wear/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/demo.gif -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemo-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemo.xcodeproj/xcshareddata/xcschemes/reactNativeAndroidWearDemo-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemo.xcodeproj/xcshareddata/xcschemes/reactNativeAndroidWearDemo-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemo.xcodeproj/xcshareddata/xcschemes/reactNativeAndroidWearDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemo.xcodeproj/xcshareddata/xcschemes/reactNativeAndroidWearDemo.xcscheme -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemo/AppDelegate.h -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemo/AppDelegate.m -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemo/Info.plist -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemo/main.m -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemoTests/Info.plist -------------------------------------------------------------------------------- /ios/reactNativeAndroidWearDemoTests/reactNativeAndroidWearDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/ios/reactNativeAndroidWearDemoTests/reactNativeAndroidWearDemoTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevkoski/react-native-android-wear-demo/HEAD/yarn.lock --------------------------------------------------------------------------------