diff --git a/context/BindContext.tsx b/context/BindContext.tsx index 8ad630b..5a2bb6d 100644 --- a/context/BindContext.tsx +++ b/context/BindContext.tsx @@ -1,5 +1,4 @@ import React, { createContext, useCallback, useContext, useEffect, useMemo, useState } from 'react' -import { Platform } from 'react-native' import type { BindPayload } from '@/lib/types' import { clearBindPayload, loadBindPayload, saveBindPayload } from '@/lib/storage' @@ -24,11 +23,6 @@ export function BindProvider({ children }: { children: React.ReactNode }) { })() }, []) - useEffect(() => { - if (!ready || !bind) return - // 现在仅做 baseUrl/token 的远程控制绑定,不再在 App 内启动 EasyTier 数据面 - }, [ready, bind]) - const setBind = useCallback(async (p: BindPayload | null) => { setBindState(p) if (p) await saveBindPayload(p) diff --git a/lib/easyTierVpn.ts b/lib/easyTierVpn.ts deleted file mode 100644 index d85fe43..0000000 --- a/lib/easyTierVpn.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { requireOptionalNativeModule } from 'expo-modules-core' - -export type EasyTierConfigInput = { - networkName: string - networkSecret: string - peerUrls: string[] -} - -type NativeModule = { - isAvailable: () => boolean - saveAndPrepareTunnel: (configJson: string) => Promise> - checkVpnPermissionGranted: () => Promise> -} - -const Native = requireOptionalNativeModule('ExpoEasyTierVpn') - -export function isExpoEasyTierVpnAvailable(): boolean { - try { - return Native?.isAvailable?.() === true - } catch { - return false - } -} - -export async function saveAndPrepareTunnel(config: EasyTierConfigInput): Promise> { - if (!Native?.saveAndPrepareTunnel) { - return { ok: false, reason: 'native_module_missing' } - } - return Native.saveAndPrepareTunnel(JSON.stringify(config)) -} - -export async function checkVpnPermissionGranted(): Promise { - if (!Native?.checkVpnPermissionGranted) return false - const r = await Native.checkVpnPermissionGranted() - return r?.granted === true -} diff --git a/modules/expo-easytier-vpn/android/.gradle/8.9/checksums/checksums.lock b/modules/expo-easytier-vpn/android/.gradle/8.9/checksums/checksums.lock deleted file mode 100644 index 9407155..0000000 Binary files a/modules/expo-easytier-vpn/android/.gradle/8.9/checksums/checksums.lock and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/.gradle/8.9/dependencies-accessors/gc.properties b/modules/expo-easytier-vpn/android/.gradle/8.9/dependencies-accessors/gc.properties deleted file mode 100644 index e69de29..0000000 diff --git a/modules/expo-easytier-vpn/android/.gradle/8.9/fileChanges/last-build.bin b/modules/expo-easytier-vpn/android/.gradle/8.9/fileChanges/last-build.bin deleted file mode 100644 index f76dd23..0000000 Binary files a/modules/expo-easytier-vpn/android/.gradle/8.9/fileChanges/last-build.bin and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/.gradle/8.9/fileHashes/fileHashes.lock b/modules/expo-easytier-vpn/android/.gradle/8.9/fileHashes/fileHashes.lock deleted file mode 100644 index 33d7a82..0000000 Binary files a/modules/expo-easytier-vpn/android/.gradle/8.9/fileHashes/fileHashes.lock and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/.gradle/8.9/gc.properties b/modules/expo-easytier-vpn/android/.gradle/8.9/gc.properties deleted file mode 100644 index e69de29..0000000 diff --git a/modules/expo-easytier-vpn/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/modules/expo-easytier-vpn/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock deleted file mode 100644 index 22bc6e6..0000000 Binary files a/modules/expo-easytier-vpn/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/.gradle/buildOutputCleanup/cache.properties b/modules/expo-easytier-vpn/android/.gradle/buildOutputCleanup/cache.properties deleted file mode 100644 index aa88cf2..0000000 --- a/modules/expo-easytier-vpn/android/.gradle/buildOutputCleanup/cache.properties +++ /dev/null @@ -1,2 +0,0 @@ -#Wed Mar 25 14:32:32 CDT 2026 -gradle.version=8.9 diff --git a/modules/expo-easytier-vpn/android/.gradle/vcs-1/gc.properties b/modules/expo-easytier-vpn/android/.gradle/vcs-1/gc.properties deleted file mode 100644 index e69de29..0000000 diff --git a/modules/expo-easytier-vpn/android/build.gradle b/modules/expo-easytier-vpn/android/build.gradle deleted file mode 100644 index a4e2a67..0000000 --- a/modules/expo-easytier-vpn/android/build.gradle +++ /dev/null @@ -1,19 +0,0 @@ -plugins { - id 'com.android.library' - id 'expo-module-gradle-plugin' -} - -group = 'expo.modules.easytier' -version = '1.0.0' - -android { - namespace "expo.modules.easytier" - defaultConfig { - versionCode 1 - versionName "1.0.0" - } -} - -dependencies { - implementation 'androidx.core:core-ktx:1.13.1' -} diff --git a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/results.bin b/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/results.bin deleted file mode 100644 index 7ed749e..0000000 --- a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/results.bin +++ /dev/null @@ -1 +0,0 @@ -o/bundleLibRuntimeToDirDebug diff --git a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/BuildConfig.dex b/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/BuildConfig.dex deleted file mode 100644 index 75b5596..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/BuildConfig.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.dex b/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.dex deleted file mode 100644 index 6e41a64..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.dex b/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.dex deleted file mode 100644 index 68d01ae..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.dex b/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.dex deleted file mode 100644 index 2e9e01c..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.dex b/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.dex deleted file mode 100644 index c26e581..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.dex b/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.dex deleted file mode 100644 index 8c7b9d6..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.dex b/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.dex deleted file mode 100644 index ec915ab..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule.dex b/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule.dex deleted file mode 100644 index 3281a72..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin deleted file mode 100644 index 601f245..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/0e17efa6d728a5bd3dd32c64b4f75de9/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/results.bin b/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/results.bin deleted file mode 100644 index 7ed749e..0000000 --- a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/results.bin +++ /dev/null @@ -1 +0,0 @@ -o/bundleLibRuntimeToDirDebug diff --git a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/BuildConfig.dex b/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/BuildConfig.dex deleted file mode 100644 index 75b5596..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/BuildConfig.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.dex b/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.dex deleted file mode 100644 index 6e41a64..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.dex b/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.dex deleted file mode 100644 index 68d01ae..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.dex b/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.dex deleted file mode 100644 index 2e9e01c..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.dex b/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.dex deleted file mode 100644 index c26e581..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.dex b/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.dex deleted file mode 100644 index 8c7b9d6..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.dex b/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.dex deleted file mode 100644 index ec915ab..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule.dex b/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule.dex deleted file mode 100644 index 3281a72..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/expo/modules/easytier/ExpoEasyTierVpnModule.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin deleted file mode 100644 index 601f245..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/4825c1e462d5e6e59d2960fb040aa2fc/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/b02bf20a11ebdb297904777660e70eb4/results.bin b/modules/expo-easytier-vpn/android/build/.transforms/b02bf20a11ebdb297904777660e70eb4/results.bin deleted file mode 100644 index 0d259dd..0000000 --- a/modules/expo-easytier-vpn/android/build/.transforms/b02bf20a11ebdb297904777660e70eb4/results.bin +++ /dev/null @@ -1 +0,0 @@ -o/classes diff --git a/modules/expo-easytier-vpn/android/build/.transforms/b02bf20a11ebdb297904777660e70eb4/transformed/classes/classes_dex/classes.dex b/modules/expo-easytier-vpn/android/build/.transforms/b02bf20a11ebdb297904777660e70eb4/transformed/classes/classes_dex/classes.dex deleted file mode 100644 index dfd7cca..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/b02bf20a11ebdb297904777660e70eb4/transformed/classes/classes_dex/classes.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/.transforms/be62a2d457ad24785bba0388a6b22df9/results.bin b/modules/expo-easytier-vpn/android/build/.transforms/be62a2d457ad24785bba0388a6b22df9/results.bin deleted file mode 100644 index 0d259dd..0000000 --- a/modules/expo-easytier-vpn/android/build/.transforms/be62a2d457ad24785bba0388a6b22df9/results.bin +++ /dev/null @@ -1 +0,0 @@ -o/classes diff --git a/modules/expo-easytier-vpn/android/build/.transforms/be62a2d457ad24785bba0388a6b22df9/transformed/classes/classes_dex/classes.dex b/modules/expo-easytier-vpn/android/build/.transforms/be62a2d457ad24785bba0388a6b22df9/transformed/classes/classes_dex/classes.dex deleted file mode 100644 index dfd7cca..0000000 Binary files a/modules/expo-easytier-vpn/android/build/.transforms/be62a2d457ad24785bba0388a6b22df9/transformed/classes/classes_dex/classes.dex and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/generated/source/buildConfig/debug/expo/modules/easytier/BuildConfig.java b/modules/expo-easytier-vpn/android/build/generated/source/buildConfig/debug/expo/modules/easytier/BuildConfig.java deleted file mode 100644 index 4803b3c..0000000 --- a/modules/expo-easytier-vpn/android/build/generated/source/buildConfig/debug/expo/modules/easytier/BuildConfig.java +++ /dev/null @@ -1,10 +0,0 @@ -/** - * Automatically generated file. DO NOT MODIFY - */ -package expo.modules.easytier; - -public final class BuildConfig { - public static final boolean DEBUG = Boolean.parseBoolean("true"); - public static final String LIBRARY_PACKAGE_NAME = "expo.modules.easytier"; - public static final String BUILD_TYPE = "debug"; -} diff --git a/modules/expo-easytier-vpn/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/modules/expo-easytier-vpn/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml deleted file mode 100644 index 015e36e..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/modules/expo-easytier-vpn/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/modules/expo-easytier-vpn/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json deleted file mode 100644 index d19d354..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 3, - "artifactType": { - "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", - "kind": "Directory" - }, - "applicationId": "expo.modules.easytier", - "variantName": "debug", - "elements": [ - { - "type": "SINGLE", - "filters": [], - "attributes": [], - "outputFile": "AndroidManifest.xml" - } - ], - "elementType": "File" -} \ No newline at end of file diff --git a/modules/expo-easytier-vpn/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/modules/expo-easytier-vpn/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties deleted file mode 100644 index 1211b1e..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +++ /dev/null @@ -1,6 +0,0 @@ -aarFormatVersion=1.0 -aarMetadataVersion=1.0 -minCompileSdk=1 -minCompileSdkExtension=0 -minAndroidGradlePluginVersion=1.0.0 -coreLibraryDesugaringEnabled=false diff --git a/modules/expo-easytier-vpn/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/modules/expo-easytier-vpn/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json deleted file mode 100644 index 9e26dfe..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/modules/expo-easytier-vpn/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/modules/expo-easytier-vpn/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar deleted file mode 100644 index 70604cb..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/modules/expo-easytier-vpn/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar deleted file mode 100644 index 884e0e6..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/modules/expo-easytier-vpn/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt deleted file mode 100644 index e69de29..0000000 diff --git a/modules/expo-easytier-vpn/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/modules/expo-easytier-vpn/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties deleted file mode 100644 index ff40e6c..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +++ /dev/null @@ -1 +0,0 @@ -#Wed Mar 25 12:15:20 CDT 2026 diff --git a/modules/expo-easytier-vpn/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/modules/expo-easytier-vpn/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml deleted file mode 100644 index 2cae5e7..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/modules/expo-easytier-vpn/android/build/intermediates/incremental/mergeDebugAssets/merger.xml b/modules/expo-easytier-vpn/android/build/intermediates/incremental/mergeDebugAssets/merger.xml deleted file mode 100644 index 694c6c6..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/incremental/mergeDebugAssets/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/modules/expo-easytier-vpn/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/modules/expo-easytier-vpn/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml deleted file mode 100644 index 9880a90..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/modules/expo-easytier-vpn/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/modules/expo-easytier-vpn/android/build/intermediates/incremental/mergeDebugShaders/merger.xml deleted file mode 100644 index 4cdf415..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/modules/expo-easytier-vpn/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/expo-easytier-vpn_debug.kotlin_module b/modules/expo-easytier-vpn/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/expo-easytier-vpn_debug.kotlin_module deleted file mode 100644 index 9dbc290..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/expo-easytier-vpn_debug.kotlin_module and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/expo/modules/easytier/BuildConfig.class b/modules/expo-easytier-vpn/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/expo/modules/easytier/BuildConfig.class deleted file mode 100644 index 648df6f..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/expo/modules/easytier/BuildConfig.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/modules/expo-easytier-vpn/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt deleted file mode 100644 index 78ac5b8..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +++ /dev/null @@ -1,2 +0,0 @@ -R_DEF: Internal format may change without notice -local diff --git a/modules/expo-easytier-vpn/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/modules/expo-easytier-vpn/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt deleted file mode 100644 index aac6318..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +++ /dev/null @@ -1,11 +0,0 @@ -1 -2 -4 -5 -6 -7 -7-->C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml:2:3-65 -7-->C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml:2:20-62 -8 -9 diff --git a/modules/expo-easytier-vpn/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/modules/expo-easytier-vpn/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml deleted file mode 100644 index 015e36e..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/modules/expo-easytier-vpn/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/modules/expo-easytier-vpn/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json deleted file mode 100644 index 0637a08..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/modules/expo-easytier-vpn/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/modules/expo-easytier-vpn/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt deleted file mode 100644 index 08f4ebe..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +++ /dev/null @@ -1 +0,0 @@ -0 Warning/Error \ No newline at end of file diff --git a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/expo-easytier-vpn_debug.kotlin_module b/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/expo-easytier-vpn_debug.kotlin_module deleted file mode 100644 index 9dbc290..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/expo-easytier-vpn_debug.kotlin_module and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/BuildConfig.class b/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/BuildConfig.class deleted file mode 100644 index 648df6f..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/BuildConfig.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.class b/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.class deleted file mode 100644 index 84fb2f0..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.class b/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.class deleted file mode 100644 index 543046c..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.class b/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.class deleted file mode 100644 index f639f6e..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.class b/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.class deleted file mode 100644 index 931517b..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.class b/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.class deleted file mode 100644 index 9e93ce4..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.class b/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.class deleted file mode 100644 index 5c8ef8f..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule.class b/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule.class deleted file mode 100644 index 3d7462b..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/expo/modules/easytier/ExpoEasyTierVpnModule.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar deleted file mode 100644 index 838b2e2..0000000 Binary files a/modules/expo-easytier-vpn/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/modules/expo-easytier-vpn/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt deleted file mode 100644 index 0737228..0000000 --- a/modules/expo-easytier-vpn/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +++ /dev/null @@ -1 +0,0 @@ -expo.modules.easytier diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab deleted file mode 100644 index bdf584a..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream deleted file mode 100644 index cc6ddbb..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len deleted file mode 100644 index 7420fef..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len deleted file mode 100644 index 2a17e6e..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at deleted file mode 100644 index 7f68101..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i deleted file mode 100644 index 71b06d5..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len deleted file mode 100644 index 131e265..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab deleted file mode 100644 index 38cc232..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream deleted file mode 100644 index b63b5aa..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len deleted file mode 100644 index eb0b8a0..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len deleted file mode 100644 index 01bdaa1..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at deleted file mode 100644 index fc0e221..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i deleted file mode 100644 index 1073853..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len deleted file mode 100644 index 131e265..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab deleted file mode 100644 index 0999fc9..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream deleted file mode 100644 index b63b5aa..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len deleted file mode 100644 index eb0b8a0..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len deleted file mode 100644 index 01bdaa1..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at deleted file mode 100644 index e51ba7c..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i deleted file mode 100644 index 1073853..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len deleted file mode 100644 index 131e265..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab deleted file mode 100644 index 428cd8a..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream deleted file mode 100644 index ebfaa74..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len deleted file mode 100644 index 3ad236c..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len deleted file mode 100644 index 817b326..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at deleted file mode 100644 index 8e74695..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i deleted file mode 100644 index 5cb68ec..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len deleted file mode 100644 index 131e265..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab deleted file mode 100644 index 51788be..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream deleted file mode 100644 index f4e5516..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len deleted file mode 100644 index 6f677df..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len deleted file mode 100644 index a9f80ae..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at deleted file mode 100644 index e152afd..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i deleted file mode 100644 index 073b30a..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len deleted file mode 100644 index 131e265..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab deleted file mode 100644 index bdf584a..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream deleted file mode 100644 index cc6ddbb..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len deleted file mode 100644 index 7420fef..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len deleted file mode 100644 index 2a17e6e..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at deleted file mode 100644 index 768acf1..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i deleted file mode 100644 index 71b06d5..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len deleted file mode 100644 index 131e265..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab deleted file mode 100644 index bdf584a..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream deleted file mode 100644 index 093092c..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len deleted file mode 100644 index 68d7fbd..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len deleted file mode 100644 index 2a17e6e..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at deleted file mode 100644 index 2d156d5..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i deleted file mode 100644 index 006451f..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len deleted file mode 100644 index 131e265..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab deleted file mode 100644 index bdf584a..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream deleted file mode 100644 index 9b3a5ab..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len deleted file mode 100644 index 79ad34c..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len deleted file mode 100644 index 2a17e6e..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at deleted file mode 100644 index 875403e..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i deleted file mode 100644 index acebe6a..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len deleted file mode 100644 index 131e265..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab deleted file mode 100644 index 166c057..0000000 --- a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +++ /dev/null @@ -1,2 +0,0 @@ -1 -0 \ No newline at end of file diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab deleted file mode 100644 index bdf584a..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream deleted file mode 100644 index cc6ddbb..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len deleted file mode 100644 index 7420fef..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len deleted file mode 100644 index 2a17e6e..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at deleted file mode 100644 index 5875372..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i deleted file mode 100644 index 71b06d5..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len deleted file mode 100644 index 131e265..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab deleted file mode 100644 index 8aad32b..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream deleted file mode 100644 index 08e7df1..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len deleted file mode 100644 index b7da01d..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len deleted file mode 100644 index 2a17e6e..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at deleted file mode 100644 index efbd91b..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len deleted file mode 100644 index 1b1cb4d..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab deleted file mode 100644 index 67c27dc..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream deleted file mode 100644 index dc2df0e..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len deleted file mode 100644 index 802cbcb..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len deleted file mode 100644 index b7d7395..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at deleted file mode 100644 index 6133287..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i deleted file mode 100644 index 83cb48e..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len deleted file mode 100644 index 131e265..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin deleted file mode 100644 index 9e1c135..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin deleted file mode 100644 index 345a4c2..0000000 Binary files a/modules/expo-easytier-vpn/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/outputs/logs/manifest-merger-debug-report.txt b/modules/expo-easytier-vpn/android/build/outputs/logs/manifest-merger-debug-report.txt deleted file mode 100644 index 82db5c6..0000000 --- a/modules/expo-easytier-vpn/android/build/outputs/logs/manifest-merger-debug-report.txt +++ /dev/null @@ -1,20 +0,0 @@ --- Merging decision tree log --- -manifest -ADDED from C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml:1:1-3:12 -INJECTED from C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml:1:1-3:12 - package - INJECTED from C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml - xmlns:android - ADDED from C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml:1:11-69 -uses-permission#android.permission.INTERNET -ADDED from C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml:2:3-65 - android:name - ADDED from C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml:2:20-62 -uses-sdk -INJECTED from C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml reason: use-sdk injection requested -INJECTED from C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml -INJECTED from C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml - android:targetSdkVersion - INJECTED from C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml - android:minSdkVersion - INJECTED from C:\mobile\modules\expo-easytier-vpn\android\src\main\AndroidManifest.xml diff --git a/modules/expo-easytier-vpn/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/modules/expo-easytier-vpn/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin deleted file mode 100644 index 10c3d45..0000000 Binary files a/modules/expo-easytier-vpn/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/META-INF/expo-easytier-vpn_debug.kotlin_module b/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/META-INF/expo-easytier-vpn_debug.kotlin_module deleted file mode 100644 index 9dbc290..0000000 Binary files a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/META-INF/expo-easytier-vpn_debug.kotlin_module and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.class b/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.class deleted file mode 100644 index 84fb2f0..0000000 Binary files a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$Companion.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.class b/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.class deleted file mode 100644 index 543046c..0000000 Binary files a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$1.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.class b/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.class deleted file mode 100644 index f639f6e..0000000 Binary files a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$2.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.class b/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.class deleted file mode 100644 index 931517b..0000000 Binary files a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunction$3.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.class b/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.class deleted file mode 100644 index 9e93ce4..0000000 Binary files a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$AsyncFunctionWithoutArgs$1.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.class b/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.class deleted file mode 100644 index 5c8ef8f..0000000 Binary files a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule$definition$lambda$3$$inlined$FunctionWithoutArgs$1.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule.class b/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule.class deleted file mode 100644 index 3d7462b..0000000 Binary files a/modules/expo-easytier-vpn/android/build/tmp/kotlin-classes/debug/expo/modules/easytier/ExpoEasyTierVpnModule.class and /dev/null differ diff --git a/modules/expo-easytier-vpn/android/src/main/AndroidManifest.xml b/modules/expo-easytier-vpn/android/src/main/AndroidManifest.xml deleted file mode 100644 index f79cac1..0000000 --- a/modules/expo-easytier-vpn/android/src/main/AndroidManifest.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/modules/expo-easytier-vpn/android/src/main/java/expo/modules/easytier/ExpoEasyTierVpnModule.kt b/modules/expo-easytier-vpn/android/src/main/java/expo/modules/easytier/ExpoEasyTierVpnModule.kt deleted file mode 100644 index d4e4cc2..0000000 --- a/modules/expo-easytier-vpn/android/src/main/java/expo/modules/easytier/ExpoEasyTierVpnModule.kt +++ /dev/null @@ -1,63 +0,0 @@ -package expo.modules.easytier - -import android.content.Context -import android.net.VpnService -import expo.modules.kotlin.modules.Module -import expo.modules.kotlin.modules.ModuleDefinition - -/** - * 与 PC 同源保存 EasyTier 组网 JSON;请求 Android VPN 授权。 - * 数据面隧道需将 easytier-core(与 easytier-gui Android 同源)以 JNI 形式接入后,再在此处启动/绑定 tun。 - */ -class ExpoEasyTierVpnModule : Module() { - override fun definition() = ModuleDefinition { - Name("ExpoEasyTierVpn") - - Function("isAvailable") { - true - } - - AsyncFunction("saveAndPrepareTunnel") { configJson: String -> - val ctx = appContext.reactContext ?: throw Exception("no context") - val prefs = ctx.getSharedPreferences(PREFS, Context.MODE_PRIVATE) - prefs.edit().putString(KEY_CONFIG, configJson).apply() - - val intent = VpnService.prepare(ctx) - if (intent != null) { - val act = appContext.currentActivity - if (act != null) { - @Suppress("DEPRECATION") - act.startActivityForResult(intent, REQUEST_VPN) - mapOf( - "ok" to true, - "needsVpnPermission" to true, - ) - } else { - mapOf( - "ok" to false, - "error" to "no_activity", - "needsVpnPermission" to true, - ) - } - } else { - mapOf( - "ok" to true, - "vpnPermissionGranted" to true, - "stub" to true, - ) - } - } - - AsyncFunction("checkVpnPermissionGranted") { - val ctx = appContext.reactContext ?: return@AsyncFunction mapOf("granted" to false) - val intent = VpnService.prepare(ctx) - mapOf("granted" to (intent == null)) - } - } - - companion object { - private const val PREFS = "expo_easytier_vpn" - private const val KEY_CONFIG = "config_json" - private const val REQUEST_VPN = 0x4554 - } -} diff --git a/modules/expo-easytier-vpn/expo-module.config.json b/modules/expo-easytier-vpn/expo-module.config.json deleted file mode 100644 index 69c6b96..0000000 --- a/modules/expo-easytier-vpn/expo-module.config.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "platforms": ["android"], - "android": { - "modules": ["expo.modules.easytier.ExpoEasyTierVpnModule"] - } -} diff --git a/modules/expo-easytier-vpn/package.json b/modules/expo-easytier-vpn/package.json deleted file mode 100644 index 9f07ed0..0000000 --- a/modules/expo-easytier-vpn/package.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "expo-easytier-vpn", - "version": "1.0.0", - "license": "MIT", - "peerDependencies": { - "expo": "*", - "react": "*", - "react-native": "*" - } -} diff --git a/package.json b/package.json index 0e2cd45..c39a71b 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,6 @@ "expo-camera": "~17.0.9", "expo-clipboard": "~8.0.7", "expo-constants": "~55.0.9", - "expo-easytier-vpn": "file:./modules/expo-easytier-vpn", "expo-font": "~55.0.4", "expo-linear-gradient": "~15.0.7", "expo-linking": "~55.0.8",