1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-09-19 23:21:34 +02:00

Update versions

This commit is contained in:
Allan Wang 2020-02-29 18:37:09 -08:00
parent e893c5ab9a
commit a93cdf52cc
No known key found for this signature in database
GPG Key ID: C93E3F9C679D7A56
6 changed files with 42 additions and 16 deletions

30
.idea/jarRepositories.xml Normal file
View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RemoteRepositoriesConfiguration">
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Maven Central repository" />
<option name="url" value="https://repo1.maven.org/maven2" />
</remote-repository>
<remote-repository>
<option name="id" value="jboss.community" />
<option name="name" value="JBoss Community repository" />
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
</remote-repository>
<remote-repository>
<option name="id" value="BintrayJCenter" />
<option name="name" value="BintrayJCenter" />
<option name="url" value="https://jcenter.bintray.com/" />
</remote-repository>
<remote-repository>
<option name="id" value="maven" />
<option name="name" value="maven" />
<option name="url" value="https://jitpack.io" />
</remote-repository>
<remote-repository>
<option name="id" value="Google" />
<option name="name" value="Google" />
<option name="url" value="https://dl.google.com/dl/android/maven2/" />
</remote-repository>
</component>
</project>

View File

@ -10,20 +10,20 @@ apply plugin: 'com.gladed.androidgitversion'
buildscript { buildscript {
repositories { repositories {
jcenter() jcenter()
maven { url "https://plugins.gradle.org/m2/" }
} }
dependencies { dependencies {
classpath "com.moowork.gradle:gradle-node-plugin:${Versions.nodeGradle}" classpath "com.github.node-gradle:gradle-node-plugin:${Versions.nodeGradle}"
} }
} }
apply plugin: com.moowork.gradle.node.NodePlugin apply plugin: 'com.github.node-gradle.node'
apply from: '../spotless.gradle' apply from: '../spotless.gradle'
group = APP_GROUP group = APP_GROUP
android { android {
compileSdkVersion Versions.targetSdk compileSdkVersion Versions.targetSdk
buildToolsVersion kau.Versions.buildTools
androidGitVersion { androidGitVersion {
codeFormat = 'MMNNPPXX' codeFormat = 'MMNNPPXX'
@ -75,8 +75,8 @@ android {
textOutput 'stdout' textOutput 'stdout'
} }
viewBinding { buildFeatures {
enabled = true viewBinding = true
} }
def testKeystoreFile = file('../files/test.keystore') def testKeystoreFile = file('../files/test.keystore')
@ -199,8 +199,8 @@ android {
} }
node { node {
version = '12.4.0' version = '13.8.0'
npmVersion = '6.9.0' npmVersion = '6.13.7'
download = true download = true
nodeModulesDir = file("${project.projectDir}/src/web") nodeModulesDir = file("${project.projectDir}/src/web")
} }

View File

@ -18,10 +18,6 @@ buildscript {
wrapper.setDistributionType(Wrapper.DistributionType.ALL) wrapper.setDistributionType(Wrapper.DistributionType.ALL)
} }
task clean(type: Delete) {
delete rootProject.buildDir
}
task generateChangelogMd() { task generateChangelogMd() {
def changelog = kau.ChangelogGenerator.generate("${project.rootDir}/app/src/main/res/xml/frost_changelog.xml", "${project.rootDir}/docs/Changelog.md") def changelog = kau.ChangelogGenerator.generate("${project.rootDir}/app/src/main/res/xml/frost_changelog.xml", "${project.rootDir}/docs/Changelog.md")
// If we have no changelog, something is wrong // If we have no changelog, something is wrong

View File

@ -14,7 +14,7 @@ object Versions {
const val mockk = "1.9.3" const val mockk = "1.9.3"
// https://github.com/jhy/jsoup/releases // https://github.com/jhy/jsoup/releases
const val jsoup = "1.12.1" const val jsoup = "1.13.1"
// https://square.github.io/leakcanary/changelog/ // https://square.github.io/leakcanary/changelog/
const val leakCanary = "2.2" const val leakCanary = "2.2"
// https://square.github.io/okhttp/changelog/ // https://square.github.io/okhttp/changelog/
@ -25,6 +25,6 @@ object Versions {
const val roboelectric = "4.3" const val roboelectric = "4.3"
// https://github.com/davemorrissey/subsampling-scale-image-view#quick-start // https://github.com/davemorrissey/subsampling-scale-image-view#quick-start
const val scaleImageView = "3.10.0" const val scaleImageView = "3.10.0"
// https://github.com/srs/gradle-node-plugin/releases // https://github.com/node-gradle/gradle-node-plugin/releases
const val nodeGradle = "1.3.1" const val nodeGradle = "2.2.3"
} }

View File

@ -16,7 +16,7 @@ org.gradle.daemon = true
APP_ID=Frost APP_ID=Frost
APP_GROUP=com.pitchedapps APP_GROUP=com.pitchedapps
KAU=5038b93 KAU=eb4c4ae
android.useAndroidX=true android.useAndroidX=true
android.enableJetifier=true android.enableJetifier=true

View File

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.1-all.zip