mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2024-11-24 10:54:36 -06:00
[Gradle] Fix compilation issues in latest Android Studio.
This commit is contained in:
parent
5460c1e2a0
commit
f883318bd2
16
.idea/compiler.xml
Normal file
16
.idea/compiler.xml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="CompilerConfiguration">
|
||||||
|
<bytecodeTargetLevel target="1.7">
|
||||||
|
<module name="annotation" target="1.7" />
|
||||||
|
<module name="codegen" target="1.7" />
|
||||||
|
<module name="Szkolny.eu.agendacalendarview" target="1.8" />
|
||||||
|
<module name="Szkolny.eu.app" target="1.8" />
|
||||||
|
<module name="Szkolny.eu.cafebar" target="1.8" />
|
||||||
|
<module name="Szkolny.eu.material-about-library" target="1.8" />
|
||||||
|
<module name="Szkolny.eu.mhttp" target="1.8" />
|
||||||
|
<module name="Szkolny.eu.nachos" target="1.8" />
|
||||||
|
<module name="Szkolny.eu.szkolny-font" target="1.8" />
|
||||||
|
</bytecodeTargetLevel>
|
||||||
|
</component>
|
||||||
|
</project>
|
@ -11,7 +11,6 @@
|
|||||||
<item index="1" class="java.lang.String" itemvalue="org.greenrobot.eventbus.Subscribe" />
|
<item index="1" class="java.lang.String" itemvalue="org.greenrobot.eventbus.Subscribe" />
|
||||||
</list>
|
</list>
|
||||||
</component>
|
</component>
|
||||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
|
||||||
<component name="NullableNotNullManager">
|
<component name="NullableNotNullManager">
|
||||||
<option name="myDefaultNullable" value="org.jetbrains.annotations.Nullable" />
|
<option name="myDefaultNullable" value="org.jetbrains.annotations.Nullable" />
|
||||||
<option name="myDefaultNotNull" value="androidx.annotation.RecentlyNonNull" />
|
<option name="myDefaultNotNull" value="androidx.annotation.RecentlyNonNull" />
|
||||||
@ -51,7 +50,7 @@
|
|||||||
</value>
|
</value>
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="false" project-jdk-name="1.8" project-jdk-type="JavaSDK">
|
||||||
<output url="file://$PROJECT_DIR$/build/classes" />
|
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectType">
|
<component name="ProjectType">
|
||||||
|
@ -203,8 +203,8 @@ dependencies {
|
|||||||
|
|
||||||
implementation 'com.google.android:flexbox:2.0.1'
|
implementation 'com.google.android:flexbox:2.0.1'
|
||||||
|
|
||||||
implementation 'com.qifan.powerpermission:powerpermission:1.0.0'
|
implementation 'com.qifan.powerpermission:powerpermission:1.3.0'
|
||||||
implementation 'com.qifan.powerpermission:powerpermission-coroutines:1.0.0'
|
implementation 'com.qifan.powerpermission:powerpermission-coroutines:1.3.0'
|
||||||
|
|
||||||
implementation 'com.github.kuba2k2.FSLogin:lib:master-SNAPSHOT'
|
implementation 'com.github.kuba2k2.FSLogin:lib:master-SNAPSHOT'
|
||||||
implementation 'pl.droidsonroids:jspoon:1.3.2'
|
implementation 'pl.droidsonroids:jspoon:1.3.2'
|
||||||
|
@ -17,7 +17,7 @@ buildscript {
|
|||||||
]
|
]
|
||||||
|
|
||||||
versions = [
|
versions = [
|
||||||
gradleAndroid : '4.0.0-beta05',
|
gradleAndroid : '4.1.0-rc01',
|
||||||
|
|
||||||
kotlin : ext.kotlin_version,
|
kotlin : ext.kotlin_version,
|
||||||
ktx : "1.2.0",
|
ktx : "1.2.0",
|
||||||
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
|||||||
#Fri Dec 06 18:23:03 CET 2019
|
#Mon Aug 24 17:15:24 CEST 2020
|
||||||
distributionBase=GRADLE_USER_HOME
|
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-6.2.1-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
package im.wangchao.mhttp.internal;
|
package im.wangchao.mhttp.internal;
|
||||||
|
|
||||||
import im.wangchao.mhttp.BuildConfig;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Description : Version.</p>
|
* <p>Description : Version.</p>
|
||||||
* <p>Author : wangchao.</p>
|
* <p>Author : wangchao.</p>
|
||||||
@ -14,7 +12,7 @@ public class Version {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static String userAgent() {
|
public static String userAgent() {
|
||||||
return moduleName().concat(BuildConfig.VERSION_NAME);
|
return moduleName().concat("1.10.1");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String moduleName() {
|
public static String moduleName() {
|
||||||
|
Loading…
Reference in New Issue
Block a user