<style name="TopSheet_DialogAnimation">
<item name="android:windowEnterAnimation">@anim/slide_out_from_top</item>
<item name="android:windowExitAnimation">@anim/slide_back_to_top</item>
</style>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Default implementation of [LocaleHelperKt]. | |
| */ | |
| class DefaultLocaleHelper private constructor(context: Context) : BaseLocaleHelper(context) { | |
| companion object { | |
| /* Mark the instance as Volatile*/ | |
| @Volatile | |
| private var instance: LocaleHelperKt? = null | |
| private var LOCK: Any = Any() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright 2017, Andrey Makeev | |
| * | |
| * 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.Manifest | |
| import android.annotation.TargetApi | |
| import android.app.Activity | |
| import android.content.BroadcastReceiver | |
| import android.content.Context | |
| import android.content.Intent | |
| import android.content.IntentFilter | |
| import android.content.pm.PackageManager |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <activity | |
| android:name="com.your.app.activity.ParseDeepLinkActivity" | |
| android:alwaysRetainTaskState="true" | |
| android:launchMode="singleTask" | |
| android:noHistory="true" | |
| android:theme="@android:style/Theme.Translucent.NoTitleBar"> | |
| <intent-filter android:autoVerify="true"> | |
| <data android:scheme="http" android:host="yourdomain.com" /> | |
| <data android:scheme="https" android:host="yourdomain.com" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.concurrent.TimeUnit; | |
| import io.reactivex.Observer; | |
| import io.reactivex.android.schedulers.AndroidSchedulers; | |
| import io.reactivex.disposables.Disposable; | |
| import io.reactivex.schedulers.Schedulers; | |
| /** | |
| * Created by Angelo Moroni on 27/04/17. | |
| */ |