├── .DS_Store ├── .gitignore ├── README.MD └── source_code ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .watchmanconfig ├── README-Changelog.md ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── index.android.bundle │ │ └── index.android.bundle.meta │ │ ├── java │ │ └── com │ │ │ └── haha │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-mdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-xhdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-xxhdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-xxxhdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher2222.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 ├── app.json ├── assets ├── newest.png ├── question.png └── serie.png ├── bundle ├── main.jsbundle └── main.jsbundle.meta ├── img ├── cc-bg-dark.jpg ├── main.png ├── s.png └── sina.png ├── index.android.js ├── ios ├── haha-tvOS │ └── Info.plist ├── haha-tvOSTests │ └── Info.plist ├── haha.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── haha-tvOS.xcscheme │ │ └── haha.xcscheme ├── haha │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── hahaTests │ ├── Info.plist │ └── hahaTests.m ├── package-lock.json ├── package.json ├── src ├── AboutScreen.js ├── Api.js ├── CategoryListScreen.js ├── CategoryScreen.js ├── CrashCourseDrawer.js ├── HomeScreen.js ├── NoteScreen.js ├── TestScreen.js └── VideoScreen.js └── unrelated-stuff ├── cc-logo.png ├── side.jpg ├── ss.png ├── tab1.jpg └── tab2.jpg /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/.gitignore -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/README.MD -------------------------------------------------------------------------------- /source_code/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/.babelrc -------------------------------------------------------------------------------- /source_code/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/.buckconfig -------------------------------------------------------------------------------- /source_code/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/.flowconfig -------------------------------------------------------------------------------- /source_code/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /source_code/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /source_code/README-Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/README-Changelog.md -------------------------------------------------------------------------------- /source_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/README.md -------------------------------------------------------------------------------- /source_code/__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/__tests__/index.android.js -------------------------------------------------------------------------------- /source_code/__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/__tests__/index.ios.js -------------------------------------------------------------------------------- /source_code/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/BUCK -------------------------------------------------------------------------------- /source_code/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/build.gradle -------------------------------------------------------------------------------- /source_code/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /source_code/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source_code/android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /source_code/android/app/src/main/assets/index.android.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/assets/index.android.bundle.meta -------------------------------------------------------------------------------- /source_code/android/app/src/main/java/com/haha/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/java/com/haha/MainActivity.java -------------------------------------------------------------------------------- /source_code/android/app/src/main/java/com/haha/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/java/com/haha/MainApplication.java -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/mipmap-xxhdpi/ic_launcher2222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/mipmap-xxhdpi/ic_launcher2222.png -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source_code/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /source_code/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/build.gradle -------------------------------------------------------------------------------- /source_code/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/gradle.properties -------------------------------------------------------------------------------- /source_code/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /source_code/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /source_code/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/gradlew -------------------------------------------------------------------------------- /source_code/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/gradlew.bat -------------------------------------------------------------------------------- /source_code/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/keystores/BUCK -------------------------------------------------------------------------------- /source_code/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /source_code/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/android/settings.gradle -------------------------------------------------------------------------------- /source_code/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/app.json -------------------------------------------------------------------------------- /source_code/assets/newest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/assets/newest.png -------------------------------------------------------------------------------- /source_code/assets/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/assets/question.png -------------------------------------------------------------------------------- /source_code/assets/serie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/assets/serie.png -------------------------------------------------------------------------------- /source_code/bundle/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/bundle/main.jsbundle -------------------------------------------------------------------------------- /source_code/bundle/main.jsbundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/bundle/main.jsbundle.meta -------------------------------------------------------------------------------- /source_code/img/cc-bg-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/img/cc-bg-dark.jpg -------------------------------------------------------------------------------- /source_code/img/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/img/main.png -------------------------------------------------------------------------------- /source_code/img/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/img/s.png -------------------------------------------------------------------------------- /source_code/img/sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/img/sina.png -------------------------------------------------------------------------------- /source_code/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/index.android.js -------------------------------------------------------------------------------- /source_code/ios/haha-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/haha-tvOS/Info.plist -------------------------------------------------------------------------------- /source_code/ios/haha-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/haha-tvOSTests/Info.plist -------------------------------------------------------------------------------- /source_code/ios/haha.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/haha.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /source_code/ios/haha.xcodeproj/xcshareddata/xcschemes/haha-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/haha.xcodeproj/xcshareddata/xcschemes/haha-tvOS.xcscheme -------------------------------------------------------------------------------- /source_code/ios/haha.xcodeproj/xcshareddata/xcschemes/haha.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/haha.xcodeproj/xcshareddata/xcschemes/haha.xcscheme -------------------------------------------------------------------------------- /source_code/ios/haha/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/haha/AppDelegate.h -------------------------------------------------------------------------------- /source_code/ios/haha/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/haha/AppDelegate.m -------------------------------------------------------------------------------- /source_code/ios/haha/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/haha/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /source_code/ios/haha/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/haha/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /source_code/ios/haha/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/haha/Info.plist -------------------------------------------------------------------------------- /source_code/ios/haha/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/haha/main.m -------------------------------------------------------------------------------- /source_code/ios/hahaTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/hahaTests/Info.plist -------------------------------------------------------------------------------- /source_code/ios/hahaTests/hahaTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/ios/hahaTests/hahaTests.m -------------------------------------------------------------------------------- /source_code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/package-lock.json -------------------------------------------------------------------------------- /source_code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/package.json -------------------------------------------------------------------------------- /source_code/src/AboutScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/src/AboutScreen.js -------------------------------------------------------------------------------- /source_code/src/Api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/src/Api.js -------------------------------------------------------------------------------- /source_code/src/CategoryListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/src/CategoryListScreen.js -------------------------------------------------------------------------------- /source_code/src/CategoryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/src/CategoryScreen.js -------------------------------------------------------------------------------- /source_code/src/CrashCourseDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/src/CrashCourseDrawer.js -------------------------------------------------------------------------------- /source_code/src/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/src/HomeScreen.js -------------------------------------------------------------------------------- /source_code/src/NoteScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/src/NoteScreen.js -------------------------------------------------------------------------------- /source_code/src/TestScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/src/TestScreen.js -------------------------------------------------------------------------------- /source_code/src/VideoScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/src/VideoScreen.js -------------------------------------------------------------------------------- /source_code/unrelated-stuff/cc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/unrelated-stuff/cc-logo.png -------------------------------------------------------------------------------- /source_code/unrelated-stuff/side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/unrelated-stuff/side.jpg -------------------------------------------------------------------------------- /source_code/unrelated-stuff/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/unrelated-stuff/ss.png -------------------------------------------------------------------------------- /source_code/unrelated-stuff/tab1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/unrelated-stuff/tab1.jpg -------------------------------------------------------------------------------- /source_code/unrelated-stuff/tab2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1c7/CrashCourse-Android-App/HEAD/source_code/unrelated-stuff/tab2.jpg --------------------------------------------------------------------------------