Remove local aar (#358)

This commit is contained in:
vvb2060 2021-03-15 12:45:58 +08:00 committed by GitHub
parent 85b252c1b8
commit dd7b73dd22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 7 deletions

View File

@ -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.

View File

@ -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) {

View File

@ -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) {

View File

@ -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")
}
}