Skip to content

Commit fc4a377

Browse files
committed
Add Vriska Maven repository to return non-existent dependencies to JCenter
1 parent d59e567 commit fc4a377

File tree

5 files changed

+24
-4
lines changed

5 files changed

+24
-4
lines changed

app/app.iml

+2
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,10 @@
138138
<orderEntry type="library" exported="" name="Gradle: ch.acra:acra:4.6.0@jar" level="project" />
139139
<orderEntry type="library" exported="" name="Gradle: com.android.support:support-v4:24.0.0@aar" level="project" />
140140
<orderEntry type="library" exported="" name="Gradle: pl.droidsonroids.gif:android-gif-drawable:1.0.12@aar" level="project" />
141+
<orderEntry type="library" exported="" name="Gradle: com.commit451:PhotoView:1.2.5@aar" level="project" />
141142
<orderEntry type="library" exported="" name="Gradle: com.android.support:support-annotations:24.0.0@jar" level="project" />
142143
<orderEntry type="library" exported="" name="Gradle: com.android.support:animated-vector-drawable:24.0.0@aar" level="project" />
144+
<orderEntry type="library" exported="" name="Gradle: com.reginald.swiperefresh:library:1.1.2@aar" level="project" />
143145
<orderEntry type="library" exported="" name="Gradle: org.apmem.tools:layouts:1.8@aar" level="project" />
144146
<orderEntry type="library" exported="" name="Gradle: com.android.support:multidex:1.0.3@aar" level="project" />
145147
<orderEntry type="library" exported="" name="Gradle: com.nostra13.universalimageloader:universal-image-loader:1.9.5@jar" level="project" />

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,12 @@ dependencies {
143143
//noinspection GradleDependency,GradleCompatible
144144
compile 'com.android.support:appcompat-v7:24.0.0'
145145
//noinspection GradleDependency
146-
compile 'com.takisoft.fix:preference-v7:24.0.0.1'
146+
compile 'com.takisoft.fix:preference-v7:24.0.0'
147147
compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'
148148
compile project(':modules:actionbar')
149149
compile project(':modules:popupmenu')
150150
compile 'com.reginald.swiperefresh:library:1.1.2'
151-
compile 'com.seppius.plurals:android-i18n-plurals:1.0'
151+
compile 'com.seppius.plurals:android-i18n-plurals:1.0.1'
152152
// Android 2.x plurals patch
153153
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
154154
compile 'ch.acra:acra:4.6.0'

build.gradle

+8-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,16 @@ allprojects {
1919
repositories {
2020
jcenter()
2121
mavenCentral()
22-
maven { url "https://mvnrepository.com/artifact" }
2322
maven { url "https://jitpack.io" }
2423
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
25-
maven { url 'https://repo.spring.io/plugins-release/'}
24+
maven { url "https://maven.aliyun.com/repository/jcenter" }
2625
google()
26+
maven {
27+
url "https://maven.vriska.ru/"
28+
credentials {
29+
username "gradle"
30+
password "gradle"
31+
}
32+
}
2733
}
2834
}

modules/modules.iml

+6
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@
77
<option name="BUILDABLE" value="false" />
88
</configuration>
99
</facet>
10+
<facet type="android-gradle" name="Android-Gradle">
11+
<configuration>
12+
<option name="GRADLE_PROJECT_PATH" value=":modules" />
13+
</configuration>
14+
</facet>
1015
</component>
1116
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
1217
<exclude-output />
1318
<content url="file://$MODULE_DIR$">
1419
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
20+
<excludeFolder url="file://$MODULE_DIR$/build" />
1521
</content>
1622
<orderEntry type="inheritedJdk" />
1723
<orderEntry type="sourceFolder" forTests="false" />

modules/slidingmenu/slidingmenu.iml

+6
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@
77
<option name="BUILDABLE" value="false" />
88
</configuration>
99
</facet>
10+
<facet type="android-gradle" name="Android-Gradle">
11+
<configuration>
12+
<option name="GRADLE_PROJECT_PATH" value=":modules:slidingmenu" />
13+
</configuration>
14+
</facet>
1015
</component>
1116
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
1217
<exclude-output />
1318
<content url="file://$MODULE_DIR$">
1419
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
20+
<excludeFolder url="file://$MODULE_DIR$/build" />
1521
</content>
1622
<orderEntry type="inheritedJdk" />
1723
<orderEntry type="sourceFolder" forTests="false" />

0 commit comments

Comments
 (0)