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
class Fdroidserver < Formula | |
desc "Tools for creating and managing Android app repositories for F-Droid" | |
homepage "https://f-droid.org/" | |
url "https://pypi.python.org/packages/source/f/fdroidserver/fdroidserver-0.4.0.tar.gz" | |
sha256 "89742f2e03e082c9d185835dbb4f166dade19a0e257b247a6e0bca3b4fd9b523" | |
depends_on :java => "1.7" | |
depends_on "libmagic" => :recommended | |
depends_on "libyaml" | |
depends_on :python if MacOS.version <= :snow_leopard |
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
} else if (Panic.isTriggerIntent(intent)) { | |
if (PanicResponder.receivedTriggerFromConnectedApp(this)) { | |
if (Preferences.uninstallApp()) { | |
Log.i(TAG, "uninstallApp"); | |
// lock and delete first for rapid response, then uninstall | |
shutdownAndLock(this); | |
PanicResponder.deleteAllAppData(this); | |
Intent uninstall = new Intent(Intent.ACTION_DELETE); | |
uninstall.setData(Uri.parse("package:" + getPackageName())); | |
startActivity(uninstall); |
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
#!/bin/sh | |
cd ~/Downloads | |
filename=screenshot-`date '+%s'`.png | |
$ANDROID_HOME/tools/screenshot2 $@ $filename | |
echo ~/Downloads/$filename | |
curl -F "clbin=@$filename" https://clbin.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
#!/usr/bin/env python3 | |
# | |
# Scan the provided dirs for APKs, then search those APKs for the | |
# Google Firebase Analytics API Key Identifier. | |
import os | |
import sys | |
import zipfile | |
from androguard.core.bytecodes.axml import AXMLPrinter | |
try: |
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 re, requests | |
NDK_VERSION_NUMBER_REGEX = re.compile(r'[1-9][0-9]*\.[0-9]+\.[0-9]{7}(?:-[a-z0-9]+)?') | |
NDK_VERSION_REGEX = re.compile(r"""ndkVersion\s*[= ]\s*['"]([1-9][0-9]*\.[0-9]+\.[0-9]{7}(?:-[a-z0-9]+)?)["']""") | |
r = requests.get('https://gitlab.com/fdroid/android-sdk-transparency-log/-/raw/master/checksums.json') | |
data = r.json() | |
for url, entries in data.items(): | |
for d in entries: |
OlderNewer