fdroiddata/metadata/com.gh4a/0001-remove-nonfree-dependencies.patch
Ruslan Boitsov f0c3f09494 make OctoDroid FOSS again
Use patches instead of sed because otherwise we'd need annoying triple
quoting.
2017-08-28 23:59:39 +02:00

53 lines
1.3 KiB
Diff

From 1653aa3d4b235500219ca51727c271c2cbb485cc Mon Sep 17 00:00:00 2001
From: Marcus Hoffmann <m.hoffmann@cartelsol.com>
Date: Mon, 28 Aug 2017 23:24:55 +0200
Subject: [PATCH 1/2] remove nonfree dependencies
---
app/build.gradle | 7 -------
1 file changed, 7 deletions(-)
diff --git a/app/build.gradle b/app/build.gradle
index cf90f34e..5947b592 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -3,17 +3,14 @@ def isPlaystore = taskRequests.contains("Playstore") || taskRequests.contains("p
buildscript {
repositories {
- maven { url 'https://maven.fabric.io/public' }
}
dependencies {
- classpath 'io.fabric.tools:gradle:1.+'
}
}
repositories {
mavenCentral()
- maven { url 'https://maven.fabric.io/public' }
maven { url "https://jitpack.io" }
maven { url "https://maven.google.com" }
}
@@ -21,7 +18,6 @@ repositories {
apply plugin: 'com.android.application'
if (isPlaystore) {
- apply plugin: 'io.fabric'
}
android {
@@ -83,9 +79,6 @@ dependencies {
exclude group: 'org.json', module : 'json'
}
compile 'com.github.Tunous:MarkdownEdit:0.1.1'
- playstoreCompile('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') {
- transitive = true;
- }
}
def Properties props = new Properties()
--
2.11.0