Use snapshot release of plausible-android

This commit is contained in:
William Brawner 2022-11-03 06:10:54 -06:00
parent 5af4d2028f
commit 47dd47aa7e
2 changed files with 4 additions and 5 deletions

View file

@ -106,7 +106,7 @@ dependencies {
androidTestUtil "androidx.test:orchestrator:1.4.1" androidTestUtil "androidx.test:orchestrator:1.4.1"
androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0' androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'
implementation 'com.wbrawner.plausible:plausible-android:0.1.0' implementation 'com.wbrawner.plausible:plausible-android:0.1.0-SNAPSHOT'
implementation 'androidx.appcompat:appcompat:1.5.1' implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.preference:preference-ktx:1.2.0' implementation 'androidx.preference:preference-ktx:1.2.0'
implementation "androidx.fragment:fragment-ktx:1.5.4" implementation "androidx.fragment:fragment-ktx:1.5.4"
@ -135,10 +135,6 @@ android.productFlavors.each { flavor ->
apply plugin: 'com.google.firebase.crashlytics' apply plugin: 'com.google.firebase.crashlytics'
} }
} }
repositories {
mavenCentral()
mavenLocal()
}
jacoco { jacoco {
toolVersion = '0.8.0' toolVersion = '0.8.0'

View file

@ -25,6 +25,9 @@ allprojects {
} }
maven { url 'https://maven.google.com' } maven { url 'https://maven.google.com' }
maven {url 'https://plugins.gradle.org/m2/' } maven {url 'https://plugins.gradle.org/m2/' }
maven {
url 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
}
} }
} }