if (BuildConfig.Theme == "red") {
RedTheme { ... }
}else {
GreenTheme { ... }
}
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
/** | |
* Parse the result from [apkanalyzer dex packages <apk>] and give us summary about the data | |
* | |
* Author @esafirm | |
*/ | |
// (type/state/defined methods/referenced methods /byte size/name) | |
// P, C, M, and F indicate packages, classes, methods, and fields, respectively. And x, k, r, and d indicate removed, kept, referenced and defined nodes, respectively. | |
enum Type { |
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
#!/usr/bin/env bash | |
TARGET=temp_target | |
AAR_URL=$1 | |
TARGET_NAME=$2 | |
ZIP_NAME=jetifier.zip | |
# Download Jetifier | |
curl "https://dl.google.com/dl/android/studio/jetifier-zips/1.0.0-beta09/jetifier-standalone.zip" -o $ZIP_NAME |
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
require 'formula' | |
class Drafter < Formula | |
homepage 'http://apiblueprint.org' | |
head 'https://github.com/apiaryio/drafter.git', :tag => 'v4.1.0' | |
def install | |
system "./configure", "--shared" | |
system "make", "drafter" | |
bin.install Dir["bin/drafter"] |
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
class MemoryProfilerRule : TestRule { | |
override fun apply(base: Statement?, description: Description?): Statement { | |
return MemoryProfilerWatcher().apply(base, description) | |
} | |
private inner class MemoryProfilerWatcher : TestWatcher() { | |
private val runtime = Runtime.getRuntime() | |
private var before: Long = 0 |
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
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
TARGET_DIR = ARGV[0] | |
@failing_module = [] | |
@no_test_module = [] | |
def fail_number(file_path) | |
file = IO.read(file_path) |
For more information https://blog.jeroenhd.nl/article/android-7-nougat-and-certificate-authorities
Ran into this issue as well while trying to check for privacy implications of an app. The blog post and docs linked above does explain what happened, but not how. Source code references follows based on nougat-mr2.3.
The change was made in commit aosp-mirror/platform_frameworks_base@32d2a10, see frameworks/base:core/java/android/security/net/config/NetworkSecurityConfig.java. After that change, only the [system root store](https://github.com/android/platform_frameworks_base/blob/nougat-m
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
public class LruStorage extends LinkedHashMap<String, byte[]> | |
implements KV.Storage { | |
private final ExecutorService mService = Executors.newSingleThreadExecutor(); | |
private final KV.Storage mStorage; | |
private final int mMaxSize; | |
public LruStorage(KV.Storage storage, int size) { | |
super(size/2, 0.75f, true); | |
mStorage = storage; |
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
val denom = arrayOf(1, 2, 5, 10, 20, 50, 100) | |
val amount = arrayOf(5, 11, 53, 122, 155, 157, 210, 200) | |
fun main(args: Array<String>) = amount.forEach { currentAmount -> | |
val suggestions = mutableListOf<Int>() | |
denom.forEach { | |
if (it >= currentAmount) { | |
suggestions += it |
NewerOlder