앱스플라이어

- sdk 추가
- 딥링크 & 디퍼드 딥링크에서 값 받아와서 SharedPreference에 저장
- test applink, test urischeme 설정
This commit is contained in:
2025-03-02 17:45:55 +09:00
parent 9cef92199d
commit 1de374de3e
5 changed files with 109 additions and 6 deletions

View File

@@ -54,8 +54,8 @@
<application
android:name=".app.SodaLiveApp"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:dataExtractionRules="@xml/appsflyer_data_extraction_rules"
android:fullBackupContent="@xml/appsflyer_backup_rules"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
@@ -79,10 +79,17 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="sodalive.page.link" />
<data android:host="sodalive.net" />
<data
android:host="voiceon-test.onelink.me"
android:scheme="https" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="voiceon-test" />
</intent-filter>
</activity>
<activity android:name=".main.MainActivity" />