Remove local aar (#358)
This commit is contained in:
parent
85b252c1b8
commit
dd7b73dd22
|
|
@ -171,6 +171,7 @@ dependencies {
|
|||
implementation("com.github.bumptech.glide:glide:$glideVersion")
|
||||
implementation("com.github.bumptech.glide:okhttp3-integration:$glideVersion")
|
||||
implementation("com.github.jinatonic.confetti:confetti:1.1.2")
|
||||
implementation("com.github.MatteoBattilana:WeatherView:3.0.0")
|
||||
implementation("com.google.android.material:material:1.3.0")
|
||||
implementation("com.google.code.gson:gson:2.8.6")
|
||||
implementation("com.takisoft.preferencex:preferencex:1.1.0")
|
||||
|
|
@ -196,7 +197,6 @@ dependencies {
|
|||
implementation("io.noties.markwon:linkify:$markwonVersion")
|
||||
implementation("me.zhanghai.android.appiconloader:appiconloader-glide:1.2.0")
|
||||
implementation("me.zhanghai.android.fastscroll:library:1.1.5")
|
||||
implementation(files("libs/WeatherView-2.0.3.aar"))
|
||||
implementation(project(":manager-service"))
|
||||
}
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -16,7 +16,7 @@ public class FlowerGenerator implements ConfettoGenerator {
|
|||
public FlowerGenerator(Context ctx) {
|
||||
super();
|
||||
this.context = ctx;
|
||||
this.confettoInfo = new ConfettoInfo(PrecipType.SNOW);
|
||||
this.confettoInfo = new ConfettoInfo(PrecipType.SNOW, 1.0f, null);
|
||||
}
|
||||
|
||||
public Confetto generateConfetto(Random random) {
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ public class SnowGenerator implements ConfettoGenerator {
|
|||
public SnowGenerator(Context ctx) {
|
||||
super();
|
||||
this.context = ctx;
|
||||
this.confettoInfo = new ConfettoInfo(PrecipType.SNOW);
|
||||
this.confettoInfo = new ConfettoInfo(PrecipType.SNOW, 1.0f, null);
|
||||
}
|
||||
|
||||
public Confetto generateConfetto(Random random) {
|
||||
|
|
|
|||
|
|
@ -23,9 +23,7 @@ buildscript {
|
|||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
maven {
|
||||
setUrl("https://storage.googleapis.com/r8-releases/raw")
|
||||
}
|
||||
maven("https://storage.googleapis.com/r8-releases/raw")
|
||||
}
|
||||
dependencies {
|
||||
classpath("com.android.tools:r8:3.0.27-dev")
|
||||
|
|
@ -56,7 +54,8 @@ allprojects {
|
|||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
jcenter()
|
||||
maven("https://jcenter.bintray.com")
|
||||
maven("https://jitpack.io")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue