├── .gitignore ├── LICENSE ├── README.md ├── example ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── android │ ├── .gradle │ │ └── 2.4 │ │ │ └── taskArtifacts │ │ │ ├── cache.properties │ │ │ ├── cache.properties.lock │ │ │ ├── fileHashes.bin │ │ │ ├── fileSnapshots.bin │ │ │ ├── outputFileStates.bin │ │ │ └── taskArtifacts.bin │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── MainActivity.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 │ └── settings.gradle ├── index.android.js ├── index.ios.js ├── ios │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── example.xcscheme │ ├── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m │ └── main.jsbundle └── package.json ├── index.android.js ├── libs └── aacdecoder-android-0.8.jar ├── package.json └── src └── main ├── AndroidManifest.xml ├── java └── cl │ └── json │ └── react │ ├── AACStreamingModule.java │ ├── AACStreamingPackage.java │ ├── EventsReceiver.java │ ├── Mode.java │ ├── PhoneListener.java │ ├── Signal.java │ └── SignalReceiver.java ├── jniLibs ├── armeabi-v7a │ └── libaacdecoder.so ├── armeabi │ └── libaacdecoder.so ├── mips │ └── libaacdecoder.so └── x86 │ └── libaacdecoder.so └── res ├── drawable-hdpi └── streaming_notification_default_icon.png ├── drawable-ldpi └── streaming_notification_default_icon.png ├── drawable-mdpi └── streaming_notification_default_icon.png ├── drawable-xhdpi └── streaming_notification_default_icon.png ├── drawable-xxhdpi └── streaming_notification_default_icon.png ├── drawable-xxxhdpi └── streaming_notification_default_icon.png ├── drawable ├── streaming_notification_default_icon.png ├── streaming_notification_default_play.png └── streaming_notification_default_stop.png └── layout └── streaming_notification_player.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/README.md -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/android/.gradle/2.4/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Sep 29 13:07:08 CLT 2015 2 | -------------------------------------------------------------------------------- /example/android/.gradle/2.4/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/.gradle/2.4/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /example/android/.gradle/2.4/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/.gradle/2.4/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /example/android/.gradle/2.4/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/.gradle/2.4/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /example/android/.gradle/2.4/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/.gradle/2.4/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /example/android/.gradle/2.4/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/.gradle/2.4/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/app/src/main/java/com/example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/index.android.js -------------------------------------------------------------------------------- /example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/index.ios.js -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/ios/example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/ios/example/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/ios/example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/ios/example/main.m -------------------------------------------------------------------------------- /example/ios/exampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/ios/exampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/exampleTests/exampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/ios/exampleTests/exampleTests.m -------------------------------------------------------------------------------- /example/ios/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/ios/main.jsbundle -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/example/package.json -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/index.android.js -------------------------------------------------------------------------------- /libs/aacdecoder-android-0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/libs/aacdecoder-android-0.8.jar -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/package.json -------------------------------------------------------------------------------- /src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /src/main/java/cl/json/react/AACStreamingModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/java/cl/json/react/AACStreamingModule.java -------------------------------------------------------------------------------- /src/main/java/cl/json/react/AACStreamingPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/java/cl/json/react/AACStreamingPackage.java -------------------------------------------------------------------------------- /src/main/java/cl/json/react/EventsReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/java/cl/json/react/EventsReceiver.java -------------------------------------------------------------------------------- /src/main/java/cl/json/react/Mode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/java/cl/json/react/Mode.java -------------------------------------------------------------------------------- /src/main/java/cl/json/react/PhoneListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/java/cl/json/react/PhoneListener.java -------------------------------------------------------------------------------- /src/main/java/cl/json/react/Signal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/java/cl/json/react/Signal.java -------------------------------------------------------------------------------- /src/main/java/cl/json/react/SignalReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/java/cl/json/react/SignalReceiver.java -------------------------------------------------------------------------------- /src/main/jniLibs/armeabi-v7a/libaacdecoder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/jniLibs/armeabi-v7a/libaacdecoder.so -------------------------------------------------------------------------------- /src/main/jniLibs/armeabi/libaacdecoder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/jniLibs/armeabi/libaacdecoder.so -------------------------------------------------------------------------------- /src/main/jniLibs/mips/libaacdecoder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/jniLibs/mips/libaacdecoder.so -------------------------------------------------------------------------------- /src/main/jniLibs/x86/libaacdecoder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/jniLibs/x86/libaacdecoder.so -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/streaming_notification_default_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/res/drawable-hdpi/streaming_notification_default_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable-ldpi/streaming_notification_default_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/res/drawable-ldpi/streaming_notification_default_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/streaming_notification_default_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/res/drawable-mdpi/streaming_notification_default_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/streaming_notification_default_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/res/drawable-xhdpi/streaming_notification_default_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/streaming_notification_default_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/res/drawable-xxhdpi/streaming_notification_default_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/streaming_notification_default_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/res/drawable-xxxhdpi/streaming_notification_default_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable/streaming_notification_default_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/res/drawable/streaming_notification_default_icon.png -------------------------------------------------------------------------------- /src/main/res/drawable/streaming_notification_default_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/res/drawable/streaming_notification_default_play.png -------------------------------------------------------------------------------- /src/main/res/drawable/streaming_notification_default_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/res/drawable/streaming_notification_default_stop.png -------------------------------------------------------------------------------- /src/main/res/layout/streaming_notification_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-android-audio-streaming-aac/HEAD/src/main/res/layout/streaming_notification_player.xml --------------------------------------------------------------------------------