Skip to content

Commit b2df95a

Browse files
committed
Fix build failure
1 parent 603944c commit b2df95a

File tree

3 files changed

+34
-34
lines changed

3 files changed

+34
-34
lines changed

build.gradle

Lines changed: 3 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,4 @@
1-
buildscript {
2-
repositories {
3-
gradlePluginPortal()
4-
google()
5-
mavenLocal()
6-
mavenCentral()
7-
jcenter()
8-
9-
maven {
10-
url 'http://maven.ghostscript.com'
11-
allowInsecureProtocol = true
12-
}
13-
maven { url "https://jitpack.io" }
14-
}
15-
dependencies {
16-
classpath 'com.android.tools.build:gradle:7.2.1'
17-
}
18-
}
19-
20-
allprojects {
21-
repositories {
22-
gradlePluginPortal()
23-
google()
24-
mavenLocal()
25-
mavenCentral()
26-
jcenter()
27-
28-
maven {
29-
url 'http://maven.ghostscript.com'
30-
allowInsecureProtocol = true
31-
}
32-
maven { url "https://jitpack.io" }
33-
}
1+
plugins {
2+
id 'com.android.application' version '7.3.1' apply false
3+
id 'com.android.library' version '7.3.1' apply false
344
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

settings.gradle

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
pluginManagement {
2+
repositories {
3+
gradlePluginPortal()
4+
google()
5+
mavenLocal()
6+
mavenCentral()
7+
jcenter()
8+
maven {
9+
url 'http://maven.ghostscript.com'
10+
allowInsecureProtocol = true
11+
}
12+
maven { url "https://jitpack.io" }
13+
}
14+
}
15+
dependencyResolutionManagement {
16+
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
17+
repositories {
18+
google()
19+
mavenLocal()
20+
mavenCentral()
21+
jcenter()
22+
maven {
23+
url 'http://maven.ghostscript.com'
24+
allowInsecureProtocol = true
25+
}
26+
maven { url "https://jitpack.io" }
27+
}
28+
}
29+
30+
rootProject.name = "com.artifex.mupdf.viewer"
131
include ':jni'
232
include ':lib'
333
include ':app'

0 commit comments

Comments
 (0)