├── .editorconfig ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── distribution │ ├── const_general.c │ ├── const_general.h │ ├── const_properties.c │ ├── const_properties.h │ ├── meat_grinder.c │ └── meat_grinder.h ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ ├── AndroidManifestNew.xml │ ├── java │ └── com │ │ └── detectfrida │ │ ├── DetectFridaModule.kt │ │ ├── DetectFridaPackage.kt │ │ ├── constant │ │ └── GeneralConst.kt │ │ ├── data │ │ ├── CheckInfo.kt │ │ └── TotalResult.kt │ │ └── util │ │ ├── CheckTask.kt │ │ ├── ChecksHelper.kt │ │ ├── IChecksResultListener.kt │ │ └── RootDetectorHelper.kt │ ├── jni │ ├── CMakeLists.txt │ └── native-lib.c │ └── res │ └── values │ └── strings.xml ├── apk ├── app-release.apk ├── app.png └── ios.png ├── 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 │ │ │ ├── java │ │ │ └── com │ │ │ │ └── detectfridaexample │ │ │ │ ├── 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 │ ├── .xcode.env.local │ ├── DetectFridaExample-Bridging-Header.h │ ├── DetectFridaExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── DetectFridaExample.xcscheme │ ├── DetectFridaExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── DetectFridaExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── DetectFridaExampleTests │ │ ├── DetectFridaExampleTests.m │ │ └── Info.plist │ ├── File.swift │ ├── Podfile │ └── Podfile.lock ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js └── src │ └── App.tsx ├── ios ├── DetectFrida.h ├── DetectFrida.mm ├── JailBrokenHelper.h └── JailBrokenHelper.m ├── lefthook.yml ├── package.json ├── react-native-detect-frida.podspec ├── src ├── NativeDetectFrida.ts ├── ValueTypes.ts ├── __tests__ │ └── index.test.tsx └── index.tsx ├── tsconfig.build.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/distribution/const_general.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/distribution/const_general.c -------------------------------------------------------------------------------- /android/distribution/const_general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/distribution/const_general.h -------------------------------------------------------------------------------- /android/distribution/const_properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/distribution/const_properties.c -------------------------------------------------------------------------------- /android/distribution/const_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/distribution/const_properties.h -------------------------------------------------------------------------------- /android/distribution/meat_grinder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/distribution/meat_grinder.c -------------------------------------------------------------------------------- /android/distribution/meat_grinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/distribution/meat_grinder.h -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/detectfrida/DetectFridaModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/java/com/detectfrida/DetectFridaModule.kt -------------------------------------------------------------------------------- /android/src/main/java/com/detectfrida/DetectFridaPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/java/com/detectfrida/DetectFridaPackage.kt -------------------------------------------------------------------------------- /android/src/main/java/com/detectfrida/constant/GeneralConst.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/java/com/detectfrida/constant/GeneralConst.kt -------------------------------------------------------------------------------- /android/src/main/java/com/detectfrida/data/CheckInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/java/com/detectfrida/data/CheckInfo.kt -------------------------------------------------------------------------------- /android/src/main/java/com/detectfrida/data/TotalResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/java/com/detectfrida/data/TotalResult.kt -------------------------------------------------------------------------------- /android/src/main/java/com/detectfrida/util/CheckTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/java/com/detectfrida/util/CheckTask.kt -------------------------------------------------------------------------------- /android/src/main/java/com/detectfrida/util/ChecksHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/java/com/detectfrida/util/ChecksHelper.kt -------------------------------------------------------------------------------- /android/src/main/java/com/detectfrida/util/IChecksResultListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/java/com/detectfrida/util/IChecksResultListener.kt -------------------------------------------------------------------------------- /android/src/main/java/com/detectfrida/util/RootDetectorHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/java/com/detectfrida/util/RootDetectorHelper.kt -------------------------------------------------------------------------------- /android/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /android/src/main/jni/native-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/jni/native-lib.c -------------------------------------------------------------------------------- /android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /apk/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/apk/app-release.apk -------------------------------------------------------------------------------- /apk/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/apk/app.png -------------------------------------------------------------------------------- /apk/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/apk/ios.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/detectfridaexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/app/src/main/java/com/detectfridaexample/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/detectfridaexample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/app/src/main/java/com/detectfridaexample/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/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/imanshul/react-native-detect-frida/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/imanshul/react-native-detect-frida/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/imanshul/react-native-detect-frida/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/imanshul/react-native-detect-frida/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/imanshul/react-native-detect-frida/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/imanshul/react-native-detect-frida/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/imanshul/react-native-detect-frida/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/imanshul/react-native-detect-frida/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/imanshul/react-native-detect-frida/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/imanshul/react-native-detect-frida/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/imanshul/react-native-detect-frida/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/.xcode.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/.xcode.env.local -------------------------------------------------------------------------------- /example/ios/DetectFridaExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/DetectFridaExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/DetectFridaExample.xcodeproj/xcshareddata/xcschemes/DetectFridaExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample.xcodeproj/xcshareddata/xcschemes/DetectFridaExample.xcscheme -------------------------------------------------------------------------------- /example/ios/DetectFridaExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/DetectFridaExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/DetectFridaExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/DetectFridaExample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/DetectFridaExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/DetectFridaExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/DetectFridaExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample/Info.plist -------------------------------------------------------------------------------- /example/ios/DetectFridaExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/DetectFridaExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExample/main.m -------------------------------------------------------------------------------- /example/ios/DetectFridaExampleTests/DetectFridaExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExampleTests/DetectFridaExampleTests.m -------------------------------------------------------------------------------- /example/ios/DetectFridaExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/DetectFridaExampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /ios/DetectFrida.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/ios/DetectFrida.h -------------------------------------------------------------------------------- /ios/DetectFrida.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/ios/DetectFrida.mm -------------------------------------------------------------------------------- /ios/JailBrokenHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/ios/JailBrokenHelper.h -------------------------------------------------------------------------------- /ios/JailBrokenHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/ios/JailBrokenHelper.m -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/package.json -------------------------------------------------------------------------------- /react-native-detect-frida.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/react-native-detect-frida.podspec -------------------------------------------------------------------------------- /src/NativeDetectFrida.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/src/NativeDetectFrida.ts -------------------------------------------------------------------------------- /src/ValueTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/src/ValueTypes.ts -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanshul/react-native-detect-frida/HEAD/yarn.lock --------------------------------------------------------------------------------