diff --git a/packages/functions/android/src/reactnative/AndroidManifest.xml b/packages/functions/android/src/reactnative/AndroidManifest.xml
deleted file mode 100644
index 5337ced558..0000000000
--- a/packages/functions/android/src/reactnative/AndroidManifest.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
diff --git a/packages/functions/android/src/reactnative/java/io/invertase/firebase/functions/ReactNativeFirebaseFunctionsModule.java b/packages/functions/android/src/reactnative/java/io/invertase/firebase/functions/ReactNativeFirebaseFunctionsModule.java
deleted file mode 100644
index 66246daaa7..0000000000
--- a/packages/functions/android/src/reactnative/java/io/invertase/firebase/functions/ReactNativeFirebaseFunctionsModule.java
+++ /dev/null
@@ -1,147 +0,0 @@
-package io.invertase.firebase.functions;
-
-/*
- * Copyright (c) 2016-present Invertase Limited & Contributors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this library except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-import static io.invertase.firebase.functions.UniversalFirebaseFunctionsModule.CODE_KEY;
-import static io.invertase.firebase.functions.UniversalFirebaseFunctionsModule.DATA_KEY;
-import static io.invertase.firebase.functions.UniversalFirebaseFunctionsModule.DETAILS_KEY;
-import static io.invertase.firebase.functions.UniversalFirebaseFunctionsModule.MSG_KEY;
-
-import com.facebook.react.bridge.Arguments;
-import com.facebook.react.bridge.Promise;
-import com.facebook.react.bridge.ReactApplicationContext;
-import com.facebook.react.bridge.ReactMethod;
-import com.facebook.react.bridge.ReadableMap;
-import com.facebook.react.bridge.WritableMap;
-import com.google.android.gms.tasks.Task;
-import com.google.firebase.functions.FirebaseFunctionsException;
-import io.invertase.firebase.common.RCTConvertFirebase;
-import io.invertase.firebase.common.ReactNativeFirebaseModule;
-import java.io.IOException;
-
-public class ReactNativeFirebaseFunctionsModule extends ReactNativeFirebaseModule {
- private static final String SERVICE_NAME = "Functions";
- private final UniversalFirebaseFunctionsModule module;
-
- ReactNativeFirebaseFunctionsModule(ReactApplicationContext reactContext) {
- super(reactContext, SERVICE_NAME);
- this.module = new UniversalFirebaseFunctionsModule(reactContext, SERVICE_NAME);
- }
-
- @ReactMethod
- public void httpsCallable(
- String appName,
- String region,
- String host,
- Integer port,
- String name,
- ReadableMap wrapper,
- ReadableMap options,
- Promise promise) {
- Task