You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StringLIVE_SERVER = "https://openapi.fuguchat.com/api/"; // Change 'openapi.fuguchat.com' to the api pointing of your fugu-serverStringLIVE_SERVER_OC = "https://openapi.fuguchat.com/api/"; // Change 'openapi.fuguchat.com' to the api pointing of your fugu-serverStringSOCKET_LIVE_SERVER = "https://openapi.fuguchat.com"; // Change 'openapi.fuguchat.com' to the api pointing of your fugu-serverStringCONFERENCING_LIVE_NEW = "https://meet.jit.si"; // Change this to your own jitsi-meet instance urlStringDOMAIN_URL_LIVE = "fuguchat.com"; // Change your domain name here (Can be found in domain_credentials.domain table)StringAPP_NAME_SHORT = "Fugu"; // Replace with your AppName
app/src/main/AndroidManifest.xml
<applicationandroid:name=".MyApplication"android:finishOnTaskLaunch="true"
.... >
...
<activityandroid:name=".activity.MainActivity"android:label="@string/app_name"android:launchMode="standard"android:screenOrientation="portrait">
<intent-filter>
<actionandroid:name="android.intent.action.VIEW" />
<categoryandroid:name="android.intent.category.DEFAULT" />
<categoryandroid:name="android.intent.category.BROWSABLE" />
<dataandroid:scheme="fuguchat" /> <!--Change this scheme to your appname-->
</intent-filter>
</activity>
...
<activityandroid:name=".activity.VideoConfActivity"android:launchMode="singleTask"android:resizeableActivity="true"
... >
<intent-filter>
<actionandroid:name="android.intent.action.VIEW" />
<categoryandroid:name="android.intent.category.BROWSABLE" />
<categoryandroid:name="android.intent.category.DEFAULT" />
<dataandroid:scheme="https"android:host="meet.jit.si" /> <!-- Change this to your own jitsi-meet instance url -->
<intent-filter>
<actionandroid:name="android.intent.action.VIEW" />
<categoryandroid:name="android.intent.category.DEFAULT" />
<categoryandroid:name="android.intent.category.BROWSABLE" />
<datatools:ignore="AppLinkUrlError"android:scheme="fuguchat"/> <!-- Change this to your app name -->
</intent-filter>
</activity>
...
<meta-dataandroid:name="io.fabric.ApiKey"android:value="Add your crashlytics fabric key here" /> <!-- Add your crashlytics fabric key here if needed -->
app/src/main/res/values/strings.xml
<!DOCTYPEresources
[<!ENTITYappname"FuguChat"> // Place your app's full name
<!ENTITYfugu"Fugu">] // Place short name here
>
app/src/main/res/values-hdpi/strings.xml
<!DOCTYPEresources
[<!ENTITYappname"FuguChat"> // Place your app's full name
<!ENTITYfugu"Fugu">] // Place short name here
>
app/src/main/res/values-mdpi/strings.xml
<!DOCTYPEresources
[<!ENTITYappname"FuguChat"> // Place your app's full name
<!ENTITYfugu"Fugu">] // Place short name here
>
app/src/main/res/values-xhdpi/strings.xml
<!DOCTYPEresources
[<!ENTITYappname"FuguChat"> // Place your app's full name
<!ENTITYfugu"Fugu">] // Place short name here
>
app/src/main/res/values-xxhdpi/strings.xml
<!DOCTYPEresources
[<!ENTITYappname"FuguChat"> // Place your app's full name
<!ENTITYfugu"Fugu">] // Place short name here
>