修复 打包时横屏出错的问题

This commit is contained in:
hyb1996
2019-01-26 16:39:21 +08:00
parent c5d891e392
commit afc7f35983
4 changed files with 8 additions and 1 deletions

Binary file not shown.

View File

@@ -4,6 +4,7 @@
<w>autojs</w>
<w>capturer</w>
<w>dismissable</w>
<w>downvote</w>
<w>fileprovider</w>
<w>flowable</w>
<w>imgproc</w>
@@ -16,6 +17,7 @@
<w>storages</w>
<w>tasker</w>
<w>uncheck</w>
<w>upvote</w>
</words>
</dictionary>
</component>

View File

@@ -99,6 +99,8 @@ dependencies {
exclude group: 'com.android.support', module: 'support-annotations'
})
testImplementation 'junit:junit:4.12'
// Kotlin
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.1"
// Android Annotations
annotationProcessor "org.androidannotations:androidannotations:$AAVersion"
implementation "org.androidannotations:androidannotations-api:$AAVersion"
@@ -148,6 +150,7 @@ dependencies {
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
implementation 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0'
implementation 'com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2'
//Glide
implementation('com.github.bumptech.glide:glide:4.8.0', {
exclude group: 'com.android.support'

View File

@@ -106,7 +106,9 @@
android:name=".ui.user.RegisterActivity_"
android:windowSoftInputMode="adjustResize"/>
<activity android:name=".ui.user.WebActivity_"/>
<activity android:name=".ui.project.BuildActivity_"/>
<activity
android:name=".ui.project.BuildActivity_"
android:configChanges="orientation|screenSize"/>
<activity android:name=".ui.project.ProjectConfigActivity_"/>
<activity android:name=".ui.log.LogActivity_"/>
<activity android:name=".ui.doc.DocumentationActivity_"/>