├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── mytiktokdemo │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── mytiktokdemo │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── app ├── AnimatedHeartView.tsx ├── ShortVideoItem.tsx ├── ShortVideoPage.tsx ├── img │ ├── collect.png │ ├── comment.png │ ├── heart.webp │ ├── love-f.png │ ├── love.png │ ├── play.webp │ └── slide_up.webp └── index.ts ├── babel.config.js ├── index.js ├── ios ├── MyTiktokDemo-tvOS │ └── Info.plist ├── MyTiktokDemo-tvOSTests │ └── Info.plist ├── MyTiktokDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── MyTiktokDemo-tvOS.xcscheme │ │ └── MyTiktokDemo.xcscheme ├── MyTiktokDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── MyTiktokDemoTests │ ├── Info.plist │ └── MyTiktokDemoTests.m └── Podfile ├── metro.config.js ├── package.json ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/mytiktokdemo/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/debug/java/com/mytiktokdemo/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/mytiktokdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/java/com/mytiktokdemo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/mytiktokdemo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/java/com/mytiktokdemo/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app.json -------------------------------------------------------------------------------- /app/AnimatedHeartView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app/AnimatedHeartView.tsx -------------------------------------------------------------------------------- /app/ShortVideoItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app/ShortVideoItem.tsx -------------------------------------------------------------------------------- /app/ShortVideoPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app/ShortVideoPage.tsx -------------------------------------------------------------------------------- /app/img/collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app/img/collect.png -------------------------------------------------------------------------------- /app/img/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app/img/comment.png -------------------------------------------------------------------------------- /app/img/heart.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app/img/heart.webp -------------------------------------------------------------------------------- /app/img/love-f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app/img/love-f.png -------------------------------------------------------------------------------- /app/img/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app/img/love.png -------------------------------------------------------------------------------- /app/img/play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app/img/play.webp -------------------------------------------------------------------------------- /app/img/slide_up.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app/img/slide_up.webp -------------------------------------------------------------------------------- /app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/app/index.ts -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/index.js -------------------------------------------------------------------------------- /ios/MyTiktokDemo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/MyTiktokDemo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/MyTiktokDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/MyTiktokDemo.xcodeproj/xcshareddata/xcschemes/MyTiktokDemo-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo.xcodeproj/xcshareddata/xcschemes/MyTiktokDemo-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/MyTiktokDemo.xcodeproj/xcshareddata/xcschemes/MyTiktokDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo.xcodeproj/xcshareddata/xcschemes/MyTiktokDemo.xcscheme -------------------------------------------------------------------------------- /ios/MyTiktokDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo/AppDelegate.h -------------------------------------------------------------------------------- /ios/MyTiktokDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo/AppDelegate.m -------------------------------------------------------------------------------- /ios/MyTiktokDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/MyTiktokDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/MyTiktokDemo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/MyTiktokDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo/Info.plist -------------------------------------------------------------------------------- /ios/MyTiktokDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemo/main.m -------------------------------------------------------------------------------- /ios/MyTiktokDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemoTests/Info.plist -------------------------------------------------------------------------------- /ios/MyTiktokDemoTests/MyTiktokDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/MyTiktokDemoTests/MyTiktokDemoTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/ios/Podfile -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanleeX/MyTiktok/HEAD/yarn.lock --------------------------------------------------------------------------------