diff --git a/.gitmodules b/.gitmodules
index 1e6e9c04b2d73eb14034a8d4c23c18d02200a60d..72e0b3287fdf1572e1f1880af75dd545e4fe62ec 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,4 +1,4 @@
[submodule "GmsApi"]
path = extern/GmsApi
url = https://gitlab.e.foundation/e/apps/GmsApi
- branch = master
+ branch = dev
diff --git a/extern/GmsApi b/extern/GmsApi
index 2a43448e49dc0aec0d6c53c8a27dd58245fdaba6..09bf9494038ab53e0b86d8699db409b955fe3c0c 160000
--- a/extern/GmsApi
+++ b/extern/GmsApi
@@ -1 +1 @@
-Subproject commit 2a43448e49dc0aec0d6c53c8a27dd58245fdaba6
+Subproject commit 09bf9494038ab53e0b86d8699db409b955fe3c0c
diff --git a/firebase-dynamic-links-api b/firebase-dynamic-links-api
new file mode 120000
index 0000000000000000000000000000000000000000..30d4bb017b2ac08d2bdd4159b45b4463ec36e9ce
--- /dev/null
+++ b/firebase-dynamic-links-api
@@ -0,0 +1 @@
+extern/GmsApi/firebase-dynamic-links-api
\ No newline at end of file
diff --git a/firebase-dynamic-links/build.gradle b/firebase-dynamic-links/build.gradle
new file mode 100644
index 0000000000000000000000000000000000000000..eee55e606f07e153e554f1237023c045357c6844
--- /dev/null
+++ b/firebase-dynamic-links/build.gradle
@@ -0,0 +1,51 @@
+/*
+ * Copyright 2019 e Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file 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.
+ */
+
+apply plugin: 'com.android.library'
+
+String getMyVersionName() {
+ def stdout = new ByteArrayOutputStream()
+ if (rootProject.file("gradlew").exists())
+ exec { commandLine 'git', 'describe', '--tags', '--always', '--dirty'; standardOutput = stdout }
+ else // automatic build system, don't tag dirty
+ exec { commandLine 'git', 'describe', '--tags', '--always'; standardOutput = stdout }
+ return stdout.toString().trim().substring(1)
+}
+
+android {
+ compileSdkVersion androidCompileSdk()
+ buildToolsVersion "$androidBuildVersionTools"
+
+ defaultConfig {
+ versionName getMyVersionName()
+ minSdkVersion androidMinSdk()
+ targetSdkVersion androidTargetSdk()
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+
+ lintOptions {
+ disable 'InvalidPackage'
+ }
+}
+
+dependencies {
+ api project(':play-services-base')
+ api project(':firebase-dynamic-links-api')
+}
diff --git a/firebase-dynamic-links/gradle.properties b/firebase-dynamic-links/gradle.properties
new file mode 100644
index 0000000000000000000000000000000000000000..77629fd3dfb47383aad9fc1896f2e3abb4d86edc
--- /dev/null
+++ b/firebase-dynamic-links/gradle.properties
@@ -0,0 +1,34 @@
+#
+# Copyright 2019 e Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file 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.
+#
+
+POM_NAME=Firebase Dynamic LInks Library
+POM_DESCRIPTION=The Firebase Library module to access the Dynamic Links API
+
+POM_PACKAGING=aar
+
+POM_URL=https://github.com/microg/android_external_GmsLib
+
+POM_SCM_URL=https://github.com/microg/android_external_GmsLib
+POM_SCM_CONNECTION=scm:git@github.com:microg/android_external_GmsLib.git
+POM_SCM_DEV_CONNECTION=scm:git@github.com:microg/android_external_GmsLib.git
+
+POM_LICENCE_NAME=The Apache Software License, Version 2.0
+POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
+POM_LICENCE_DIST=repo
+
+POM_DEVELOPER_ID=alexandruchircu
+POM_DEVELOPER_NAME=Alexandru Chircu
+
diff --git a/firebase-dynamic-links/src/main/AndroidManifest.xml b/firebase-dynamic-links/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000000000000000000000000000000000..deafcd4776b0583b59fffcf84f4f1d3d94be60fd
--- /dev/null
+++ b/firebase-dynamic-links/src/main/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
diff --git a/play-services-appinvite-api b/play-services-appinvite-api
new file mode 120000
index 0000000000000000000000000000000000000000..bc9b313e85e0a40cf32bfb38842e82fd827844c2
--- /dev/null
+++ b/play-services-appinvite-api
@@ -0,0 +1 @@
+extern/GmsApi/play-services-appinvite-api
\ No newline at end of file
diff --git a/play-services-appinvite/build.gradle b/play-services-appinvite/build.gradle
new file mode 100644
index 0000000000000000000000000000000000000000..be3d95e9a336b762d18d24f0525009a1f9129708
--- /dev/null
+++ b/play-services-appinvite/build.gradle
@@ -0,0 +1,51 @@
+/*
+ * Copyright 2019 e Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file 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.
+ */
+
+apply plugin: 'com.android.library'
+
+String getMyVersionName() {
+ def stdout = new ByteArrayOutputStream()
+ if (rootProject.file("gradlew").exists())
+ exec { commandLine 'git', 'describe', '--tags', '--always', '--dirty'; standardOutput = stdout }
+ else // automatic build system, don't tag dirty
+ exec { commandLine 'git', 'describe', '--tags', '--always'; standardOutput = stdout }
+ return stdout.toString().trim().substring(1)
+}
+
+android {
+ compileSdkVersion androidCompileSdk()
+ buildToolsVersion "$androidBuildVersionTools"
+
+ defaultConfig {
+ versionName getMyVersionName()
+ minSdkVersion androidMinSdk()
+ targetSdkVersion androidTargetSdk()
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+
+ lintOptions {
+ disable 'InvalidPackage'
+ }
+}
+
+dependencies {
+ api project(':play-services-base')
+ api project(':play-services-appinvite-api')
+}
diff --git a/play-services-appinvite/gradle.properties b/play-services-appinvite/gradle.properties
new file mode 100644
index 0000000000000000000000000000000000000000..a61eac65906c277684a034024bd4f2c1e003438a
--- /dev/null
+++ b/play-services-appinvite/gradle.properties
@@ -0,0 +1,34 @@
+#
+# Copyright 2019 e Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file 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.
+#
+
+POM_NAME=Play Services AppInvite Library
+POM_DESCRIPTION=The Play Services Library module to access the AppInvite API
+
+POM_PACKAGING=aar
+
+POM_URL=https://github.com/microg/android_external_GmsLib
+
+POM_SCM_URL=https://github.com/microg/android_external_GmsLib
+POM_SCM_CONNECTION=scm:git@github.com:microg/android_external_GmsLib.git
+POM_SCM_DEV_CONNECTION=scm:git@github.com:microg/android_external_GmsLib.git
+
+POM_LICENCE_NAME=The Apache Software License, Version 2.0
+POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
+POM_LICENCE_DIST=repo
+
+POM_DEVELOPER_ID=alexandruchircu
+POM_DEVELOPER_NAME=Alexandru Chircu
+
diff --git a/play-services-appinvite/src/main/AndroidManifest.xml b/play-services-appinvite/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000000000000000000000000000000000..8691798e2f17e9ad53e3d05cd7cb85fd5c4093f7
--- /dev/null
+++ b/play-services-appinvite/src/main/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
diff --git a/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInvite.java b/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInvite.java
new file mode 100644
index 0000000000000000000000000000000000000000..5b63ebc17d6a23825e661779ddc012c666aae89e
--- /dev/null
+++ b/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInvite.java
@@ -0,0 +1,41 @@
+/*
+ * Copyright (C) 2019 e Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file 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.
+ */
+
+package com.google.android.gms.appinvite;
+
+import android.os.Bundle;
+import android.util.Log;
+
+import com.google.android.gms.common.api.Api;
+
+import org.microg.gms.appinvite.AppInviteApiBuilder;
+import org.microg.gms.appinvite.AppInviteApiImpl;
+import org.microg.gms.common.PublicApi;
+
+
+@PublicApi
+public final class AppInvite {
+ private static final String TAG = "GmsAppInvite";
+
+ public static final Api API = new Api(new AppInviteApiBuilder());
+
+ public static final AppInviteApi AppInviteApi = new AppInviteApiImpl();
+
+
+ private AppInvite() {
+
+ }
+}
diff --git a/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteApi.java b/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteApi.java
new file mode 100644
index 0000000000000000000000000000000000000000..e59cea65469c045ebbe606c4d232554f1cd1a95f
--- /dev/null
+++ b/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteApi.java
@@ -0,0 +1,36 @@
+/*
+ * Copyright (C) 2019 e Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file 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.
+ */
+
+package com.google.android.gms.appinvite;
+
+import android.os.Bundle;
+
+import android.app.Activity;
+
+import com.google.android.gms.common.api.Api;
+import com.google.android.gms.common.api.GoogleApiClient;
+import com.google.android.gms.common.api.PendingResult;
+import com.google.android.gms.common.api.Status;
+
+import org.microg.gms.common.PublicApi;
+
+
+@PublicApi
+public interface AppInviteApi {
+ PendingResult convertInvitation (GoogleApiClient client, String invitationId);
+
+ PendingResult getInvitation (GoogleApiClient client, Activity currentActivity, boolean launchDeepLink);
+}
\ No newline at end of file
diff --git a/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteInvitation.java b/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteInvitation.java
new file mode 100644
index 0000000000000000000000000000000000000000..1dda9db741a6aaf5ac15fe26c39fa9c6b4ddc48e
--- /dev/null
+++ b/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteInvitation.java
@@ -0,0 +1,104 @@
+/*
+ * Copyright (C) 2019 e Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file 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.
+ */
+
+package com.google.android.gms.appinvite;
+
+import org.microg.gms.common.PublicApi;
+
+import android.content.Intent;
+import android.accounts.Account;
+import android.net.Uri;
+import android.util.Log;
+
+import java.util.Map;
+
+
+@PublicApi
+public final class AppInviteInvitation {
+ private static final String TAG = "GmsAppInviteInvitation";
+
+ public static String[] getInvitationIds (int resultCode, Intent result) {
+ return null;
+ }
+
+
+ public static final class IntentBuilder {
+ private static final String TAG = "GmsAppIIIntentBuilder";
+
+ public static final int MAX_CALL_TO_ACTION_TEXT_LENGTH = 20;
+ public static final int MAX_EMAIL_HTML_CONTENT = 512000;
+ public static final int MAX_MESSAGE_LENGTH = 100;
+ public static final int MIN_CALL_TO_ACTION_TEXT_LENGTH = 2;
+
+ IntentBuilder(CharSequence title) throws NullPointerException {
+
+ }
+
+ public Intent build() throws IllegalArgumentException {
+ return null;
+ }
+
+ public IntentBuilder setAccount(Account account) {
+ return this;
+ }
+
+ public IntentBuilder setAdditionalReferralParameters(Map params) {
+ return this;
+ }
+
+ public IntentBuilder setAndroidMinimumVersionCode(int versionCode) {
+ return this;
+ }
+
+ public IntentBuilder setCallToActionText(CharSequence callToActionText) throws IllegalArgumentException {
+ return this;
+ }
+
+ public IntentBuilder setCustomImage(Uri imageUri) {
+ return this;
+ }
+
+ public IntentBuilder setDeepLink(Uri deepLink) {
+ return this;
+ }
+
+ public IntentBuilder setEmailHtmlContent(String htmlContent) throws IllegalArgumentException {
+ return this;
+ }
+
+ public IntentBuilder setEmailSubject (String subject) {
+ return this;
+ }
+
+ public IntentBuilder setGoogleAnalyticsTrackingId(String trackingId) {
+ return this;
+ }
+
+ public IntentBuilder setMessage (CharSequence message) throws IllegalArgumentException {
+ return this;
+ }
+
+ public IntentBuilder setOtherPlatformsTargetApplication (int targetPlatform, String clientId) throws IllegalArgumentException {
+ return this;
+ }
+
+
+ public static @interface PlatformMode {
+ public static final int PROJECT_PLATFORM_ANDROID = 2;
+ public static final int PROJECT_PLATFORM_IOS = 1;
+ }
+ }
+}
\ No newline at end of file
diff --git a/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteInvitationResult.java b/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteInvitationResult.java
new file mode 100644
index 0000000000000000000000000000000000000000..7d8e1f851d6bc1e89fb1afa664716a440853dd29
--- /dev/null
+++ b/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteInvitationResult.java
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2019 e Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file 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.
+ */
+
+package com.google.android.gms.appinvite;
+
+import com.google.android.gms.common.api.Result;
+import com.google.android.gms.common.api.Status;
+
+import org.microg.gms.common.PublicApi;
+
+import android.content.Intent;
+
+
+@PublicApi
+public interface AppInviteInvitationResult extends Result {
+ public abstract Intent getInvitationIntent ();
+
+ public abstract Status getStatus ();
+}
\ No newline at end of file
diff --git a/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteReferral.java b/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteReferral.java
new file mode 100644
index 0000000000000000000000000000000000000000..8d9d5920aa8f03203040d575abf11c04b6ee3ef7
--- /dev/null
+++ b/play-services-appinvite/src/main/java/com/google/android/gms/appinvite/AppInviteReferral.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright (C) 2019 e Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file 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.
+ */
+
+package com.google.android.gms.appinvite;
+
+import org.microg.gms.common.PublicApi;
+
+import android.content.Intent;
+import android.util.Log;
+
+
+@PublicApi
+public class AppInviteReferral {
+ private static final String TAG = "GmsAppInviteReferral";
+
+ public static Intent addPlayStoreReferrerToIntent (Intent playStoreReferrerIntent, Intent referralIntent) {
+ return null;
+ }
+
+ public static Intent addReferralDataToIntent (String invitationId, String deepLink, Intent referralIntent) {
+ return null;
+ }
+
+ public static String getDeepLink (Intent referralIntent) {
+ return null;
+ }
+
+ public static String getInvitationId (Intent referralIntent) {
+ return null;
+ }
+
+ public static boolean hasReferral (Intent referralIntent) {
+ return false;
+ }
+
+ public static boolean isOpenedFromPlayStore (Intent referralIntent) {
+ return false;
+ }
+}
\ No newline at end of file
diff --git a/play-services-appinvite/src/main/java/org/microg/gms/appinvite/AppInviteApiBuilder.java b/play-services-appinvite/src/main/java/org/microg/gms/appinvite/AppInviteApiBuilder.java
new file mode 100644
index 0000000000000000000000000000000000000000..dbc491cb06f3807985e736573644a9429c301e7d
--- /dev/null
+++ b/play-services-appinvite/src/main/java/org/microg/gms/appinvite/AppInviteApiBuilder.java
@@ -0,0 +1,39 @@
+/*
+ * Copyright (C) 2019 e Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file 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.
+ */
+
+package org.microg.gms.appinvite;
+
+import android.content.Context;
+import android.os.Looper;
+import android.util.Log;
+
+import com.google.android.gms.appinvite.AppInvite;
+import com.google.android.gms.common.api.AccountInfo;
+import com.google.android.gms.common.api.GoogleApiClient;
+
+import org.microg.gms.common.api.ApiBuilder;
+import org.microg.gms.common.api.ApiConnection;
+import com.google.android.gms.common.api.Api;
+
+
+public class AppInviteApiBuilder implements ApiBuilder{
+ private static final String TAG = "GmsAppInviteApiBuilder";
+
+ @Override
+ public ApiConnection build(Context context, Looper looper, Api.ApiOptions.NoOptions options, AccountInfo accountInfo, GoogleApiClient.ConnectionCallbacks callbacks, GoogleApiClient.OnConnectionFailedListener connectionFailedListener) {
+ return new AppInviteClientImpl(context, options, callbacks, connectionFailedListener);
+ }
+}
diff --git a/play-services-appinvite/src/main/java/org/microg/gms/appinvite/AppInviteApiImpl.java b/play-services-appinvite/src/main/java/org/microg/gms/appinvite/AppInviteApiImpl.java
new file mode 100644
index 0000000000000000000000000000000000000000..4ccfa9f059a663a40ff053bf47e51761eb57f55f
--- /dev/null
+++ b/play-services-appinvite/src/main/java/org/microg/gms/appinvite/AppInviteApiImpl.java
@@ -0,0 +1,42 @@
+/*
+ * Copyright (C) 2019 e Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file 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.
+ */
+
+package org.microg.gms.appinvite;
+
+import com.google.android.gms.appinvite.AppInviteApi;
+import com.google.android.gms.appinvite.AppInviteInvitationResult;
+
+import com.google.android.gms.common.api.GoogleApiClient;
+import com.google.android.gms.common.api.PendingResult;
+import com.google.android.gms.common.api.Status;
+
+import android.app.Activity;
+import android.util.Log;
+
+
+public class AppInviteApiImpl implements AppInviteApi {
+ private static final String TAG = "GmsAppInviteApiImpl";
+
+ @Override
+ public PendingResult convertInvitation (GoogleApiClient client, String invitationId) {
+ return null;
+ }
+
+ @Override
+ public PendingResult getInvitation (GoogleApiClient client, Activity currentActivity, boolean launchDeepLink) {
+ return null;
+ }
+}
diff --git a/play-services-appinvite/src/main/java/org/microg/gms/appinvite/AppInviteClientImpl.java b/play-services-appinvite/src/main/java/org/microg/gms/appinvite/AppInviteClientImpl.java
new file mode 100644
index 0000000000000000000000000000000000000000..22b37e27c832a4fdf52a6a228c0982be52e74319
--- /dev/null
+++ b/play-services-appinvite/src/main/java/org/microg/gms/appinvite/AppInviteClientImpl.java
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2019 e Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file 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.
+ */
+
+package org.microg.gms.appinvite;
+
+import android.content.Context;
+import android.util.Log;
+
+import com.google.android.gms.appinvite.AppInvite;
+import com.google.android.gms.common.api.GoogleApiClient;
+import com.google.android.gms.common.api.Api;
+
+import org.microg.gms.common.DummyApiConnection;
+
+
+public class AppInviteClientImpl extends DummyApiConnection {
+ private static final String TAG = "GmsAppInviteClientImpl";
+
+ public AppInviteClientImpl(Context context, Api.ApiOptions.NoOptions options, GoogleApiClient.ConnectionCallbacks callbacks, GoogleApiClient.OnConnectionFailedListener connectionFailedListener) {
+ }
+}
diff --git a/settings.gradle b/settings.gradle
index a095f186b4251458b90d49e86019237d72597d8e..77c452b2c5bd3d6820529d065f69dbbb1fb419dd 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -22,6 +22,8 @@ include ':play-services-cast-framework-api'
include ':play-services-iid-api'
include ':play-services-location-api'
include ':play-services-wearable-api'
+include ':play-services-appinvite-api'
+include ':firebase-dynamic-links-api'
include ':play-services-api'
include ':play-services-base'
@@ -31,5 +33,7 @@ include ':play-services-iid'
include ':play-services-location'
include ':play-services-tasks'
include ':play-services-wearable'
+include ':play-services-appinvite'
+include ':firebase-dynamic-links'
include ':play-services'