├── .editorconfig ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs │ └── open_ad_sdk_6.1.0.4.aar └── src │ └── main │ ├── AndroidManifest.xml │ ├── AndroidManifestNew.xml │ ├── java │ └── com │ │ └── brayantad │ │ ├── AdManager.java │ │ ├── BrayantAdModule.java │ │ ├── BrayantAdPackage.java │ │ ├── WeakHandler.java │ │ ├── dy │ │ ├── DyADCore.java │ │ ├── TTAdManagerHolder.java │ │ ├── WeakHandler.java │ │ ├── drawFeed │ │ │ ├── DrawFeedViewManager.java │ │ │ ├── DrawFeedViewModule.java │ │ │ └── view │ │ │ │ └── DrawFeedView.java │ │ ├── feedAd │ │ │ ├── FeedAdViewManager.java │ │ │ └── view │ │ │ │ └── FeedAdView.java │ │ ├── fullScreen │ │ │ ├── FullScreenVideoModule.java │ │ │ └── activity │ │ │ │ └── FullScreenActivity.java │ │ ├── rewardVideo │ │ │ ├── RewardVideoModule.java │ │ │ └── activity │ │ │ │ └── RewardActivity.java │ │ ├── service │ │ │ └── CSJSplashAd.java │ │ └── splash │ │ │ ├── SplashAdModule.java │ │ │ └── activity │ │ │ └── SplashActivity.java │ │ └── utils │ │ ├── DislikeDialog.java │ │ ├── RewardBundleModel.java │ │ ├── TToast.java │ │ └── Utils.java │ └── res │ ├── drawable │ ├── btn_rounded_red.xml │ ├── extra_large.png │ ├── ic_comment_item.png │ ├── ic_share_item.png │ ├── ic_video_like.png │ ├── ic_video_liked.png │ ├── ic_video_uot.png │ ├── shape_corner.xml │ ├── shape_gradient.xml │ ├── splash_button.xml │ └── tex15.png │ ├── layout │ ├── activity_all_test_tool.xml │ ├── activity_splash.xml │ ├── activity_tx_splash.xml │ ├── dlg_dislike_custom.xml │ ├── draw_video.xml │ ├── feed_view.xml │ ├── full_video_view.xml │ ├── stream_view.xml │ └── video_view.xml │ ├── value │ └── styles.xml │ └── xml │ ├── file_paths.xml │ └── gdt_file_path.xml ├── babel.config.js ├── example ├── .bundle │ └── config ├── .watchmanconfig ├── Gemfile ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── index.android.bundle │ │ │ ├── java │ │ │ └── com │ │ │ │ └── brayantadexample │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── 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 ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── BrayantAdExample-Bridging-Header.h │ ├── BrayantAdExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── BrayantAdExample.xcscheme │ ├── BrayantAdExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ ├── BrayantAdExampleTests │ │ ├── BrayantAdExampleTests.m │ │ └── Info.plist │ ├── File.swift │ └── Podfile ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js └── src │ ├── App.tsx │ └── DrawFeedViewDemo.tsx ├── ios ├── BrayantAd-Bridging-Header.h ├── BrayantAd.mm └── BrayantAd.swift ├── lefthook.yml ├── package.json ├── react-native-brayant-ad.podspec ├── src ├── __tests__ │ └── index.test.tsx ├── dy │ ├── api │ │ ├── AdManager.ts │ │ ├── FullScreenVideo.ts │ │ ├── RewardVideo.ts │ │ └── SplashAd.ts │ └── component │ │ ├── DrawFeedAd.tsx │ │ └── FeedAd.tsx └── index.tsx ├── tsconfig.build.json ├── tsconfig.json └── turbo.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/libs/open_ad_sdk_6.1.0.4.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/libs/open_ad_sdk_6.1.0.4.aar -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/AdManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/AdManager.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/BrayantAdModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/BrayantAdModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/BrayantAdPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/BrayantAdPackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/WeakHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/WeakHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/DyADCore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/DyADCore.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/TTAdManagerHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/TTAdManagerHolder.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/WeakHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/WeakHandler.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/drawFeed/DrawFeedViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/drawFeed/DrawFeedViewManager.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/drawFeed/DrawFeedViewModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/drawFeed/DrawFeedViewModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/drawFeed/view/DrawFeedView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/drawFeed/view/DrawFeedView.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/feedAd/FeedAdViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/feedAd/FeedAdViewManager.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/feedAd/view/FeedAdView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/feedAd/view/FeedAdView.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/fullScreen/FullScreenVideoModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/fullScreen/FullScreenVideoModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/fullScreen/activity/FullScreenActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/fullScreen/activity/FullScreenActivity.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/rewardVideo/RewardVideoModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/rewardVideo/RewardVideoModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/rewardVideo/activity/RewardActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/rewardVideo/activity/RewardActivity.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/service/CSJSplashAd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/service/CSJSplashAd.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/splash/SplashAdModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/splash/SplashAdModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/dy/splash/activity/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/dy/splash/activity/SplashActivity.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/utils/DislikeDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/utils/DislikeDialog.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/utils/RewardBundleModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/utils/RewardBundleModel.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/utils/TToast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/utils/TToast.java -------------------------------------------------------------------------------- /android/src/main/java/com/brayantad/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/java/com/brayantad/utils/Utils.java -------------------------------------------------------------------------------- /android/src/main/res/drawable/btn_rounded_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/drawable/btn_rounded_red.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/extra_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/drawable/extra_large.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/ic_comment_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/drawable/ic_comment_item.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/ic_share_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/drawable/ic_share_item.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/ic_video_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/drawable/ic_video_like.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/ic_video_liked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/drawable/ic_video_liked.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/ic_video_uot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/drawable/ic_video_uot.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_corner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/drawable/shape_corner.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/drawable/shape_gradient.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/splash_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/drawable/splash_button.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/tex15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/drawable/tex15.png -------------------------------------------------------------------------------- /android/src/main/res/layout/activity_all_test_tool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/layout/activity_all_test_tool.xml -------------------------------------------------------------------------------- /android/src/main/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/layout/activity_splash.xml -------------------------------------------------------------------------------- /android/src/main/res/layout/activity_tx_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/layout/activity_tx_splash.xml -------------------------------------------------------------------------------- /android/src/main/res/layout/dlg_dislike_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/layout/dlg_dislike_custom.xml -------------------------------------------------------------------------------- /android/src/main/res/layout/draw_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/layout/draw_video.xml -------------------------------------------------------------------------------- /android/src/main/res/layout/feed_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/layout/feed_view.xml -------------------------------------------------------------------------------- /android/src/main/res/layout/full_video_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/layout/full_video_view.xml -------------------------------------------------------------------------------- /android/src/main/res/layout/stream_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/layout/stream_view.xml -------------------------------------------------------------------------------- /android/src/main/res/layout/video_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/layout/video_view.xml -------------------------------------------------------------------------------- /android/src/main/res/value/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/value/styles.xml -------------------------------------------------------------------------------- /android/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /android/src/main/res/xml/gdt_file_path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/android/src/main/res/xml/gdt_file_path.xml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/brayantadexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/java/com/brayantadexample/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/brayantadexample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/java/com/brayantadexample/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/BrayantAdExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/BrayantAdExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/BrayantAdExample.xcodeproj/xcshareddata/xcschemes/BrayantAdExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExample.xcodeproj/xcshareddata/xcschemes/BrayantAdExample.xcscheme -------------------------------------------------------------------------------- /example/ios/BrayantAdExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/BrayantAdExample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExample/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/BrayantAdExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/BrayantAdExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/BrayantAdExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExample/Info.plist -------------------------------------------------------------------------------- /example/ios/BrayantAdExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/BrayantAdExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/BrayantAdExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExample/main.m -------------------------------------------------------------------------------- /example/ios/BrayantAdExampleTests/BrayantAdExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExampleTests/BrayantAdExampleTests.m -------------------------------------------------------------------------------- /example/ios/BrayantAdExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/BrayantAdExampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/DrawFeedViewDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/example/src/DrawFeedViewDemo.tsx -------------------------------------------------------------------------------- /ios/BrayantAd-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/ios/BrayantAd-Bridging-Header.h -------------------------------------------------------------------------------- /ios/BrayantAd.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/ios/BrayantAd.mm -------------------------------------------------------------------------------- /ios/BrayantAd.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/ios/BrayantAd.swift -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/package.json -------------------------------------------------------------------------------- /react-native-brayant-ad.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/react-native-brayant-ad.podspec -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/dy/api/AdManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/src/dy/api/AdManager.ts -------------------------------------------------------------------------------- /src/dy/api/FullScreenVideo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/src/dy/api/FullScreenVideo.ts -------------------------------------------------------------------------------- /src/dy/api/RewardVideo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/src/dy/api/RewardVideo.ts -------------------------------------------------------------------------------- /src/dy/api/SplashAd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/src/dy/api/SplashAd.ts -------------------------------------------------------------------------------- /src/dy/component/DrawFeedAd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/src/dy/component/DrawFeedAd.tsx -------------------------------------------------------------------------------- /src/dy/component/FeedAd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/src/dy/component/FeedAd.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayunyi/react-native-brayant-ad/HEAD/turbo.json --------------------------------------------------------------------------------