This file contains 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
enum class DictTokenType { | |
plist, | |
dict, | |
key, | |
string, | |
date, | |
integer, | |
data, | |
array, | |
bool_true, |
This file contains 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
package com.ozodrukh.meet | |
import android.app.ActivityManager | |
import android.content.Context | |
import android.content.pm.ApplicationInfo | |
import android.graphics.Bitmap | |
import android.graphics.BitmapFactory | |
import android.graphics.BitmapFactory.Options | |
import android.graphics.BitmapShader | |
import android.graphics.Matrix |
This file contains 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
package uz.gap.messenger.ext | |
import android.arch.lifecycle.* | |
import android.support.v4.app.Fragment | |
import android.support.v4.app.FragmentActivity | |
import uz.gap.messenger.connection.SocketModel.MessageStatus | |
/** | |
* created at 3/31/18 | |
* |
This file contains 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
package com.ozodrukh.pictureexploration | |
import android.content.Context | |
import android.graphics.BitmapFactory | |
import android.graphics.Canvas | |
import android.graphics.Picture | |
import android.support.v7.app.AppCompatActivity | |
import android.os.Bundle | |
import android.util.Log | |
import android.view.View |
This file contains 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 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
plugins { | |
kotlin("jvm") | |
} | |
kapt { | |
generateStubs = true | |
} | |
dependencies { | |
compile(project(":shared")) |
This file contains 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
package uz.lamuz.player.ui.widget.cover; | |
import android.content.Context; | |
import android.content.res.TypedArray; | |
import android.graphics.Bitmap; | |
import android.graphics.Color; | |
import android.graphics.drawable.BitmapDrawable; | |
import android.graphics.drawable.ColorDrawable; | |
import android.graphics.drawable.Drawable; | |
import android.graphics.drawable.TransitionDrawable; |
This file contains 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
ּ_בּ | |
בּ_בּ | |
טּ_טּ | |
כּ‗כּ | |
לּ_לּ | |
מּ_מּ | |
סּ_סּ | |
תּ_תּ | |
٩(×̯×)۶ | |
٩(̾●̮̮̃̾•̃̾)۶ |
This file contains 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
object Detective : SimpleActivityLifecycleCallbacks() { | |
private infix fun <T> List<T>.notContains(element: T): Boolean { | |
return !contains(element) | |
} | |
/** Timeout when app looses focus */ | |
private val backgroundEnterTimeout: Int = 120 | |
private val appFocusListeners = ArrayList<ApplicationFocusListener>() | |
private var registered = false |
This file contains 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
package io.codetail.trade.activities.preview; | |
import android.content.Context; | |
import android.content.res.TypedArray; | |
import android.support.v4.graphics.drawable.DrawableCompat; | |
import android.support.v4.widget.TextViewCompat; | |
import android.util.AttributeSet; | |
import android.view.Gravity; | |
import android.view.View; | |
import android.widget.ImageView; |
NewerOlder