upgrade build tools and enable r8 full mode (#1198)
* upgrade build tools and enable r8 full mode * fix media description in fragment_view_video
This commit is contained in:
parent
8a6b439408
commit
8b85df08bd
|
@ -8,20 +8,6 @@
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
android:focusable="true">
|
android:focusable="true">
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/mediaDescription"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
app:layout_constraintTop_toBottomOf="@+id/toolbar"
|
|
||||||
app:layout_constraintBottom_toTopOf="@+id/videoPlayer"
|
|
||||||
android:background="#60000000"
|
|
||||||
android:lineSpacingMultiplier="1.1"
|
|
||||||
android:padding="8dp"
|
|
||||||
android:textAlignment="center"
|
|
||||||
android:textColor="#eee"
|
|
||||||
android:textSize="?attr/status_text_medium"
|
|
||||||
tools:text="Some media description" />
|
|
||||||
|
|
||||||
<VideoView
|
<VideoView
|
||||||
android:id="@+id/videoPlayer"
|
android:id="@+id/videoPlayer"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
@ -33,6 +19,20 @@
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/mediaDescription"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="?attr/actionBarSize"
|
||||||
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
android:background="#60000000"
|
||||||
|
android:lineSpacingMultiplier="1.1"
|
||||||
|
android:padding="8dp"
|
||||||
|
android:textAlignment="center"
|
||||||
|
android:textColor="#eee"
|
||||||
|
android:textSize="?attr/status_text_medium"
|
||||||
|
tools:text="Some media description" />
|
||||||
|
|
||||||
<ProgressBar
|
<ProgressBar
|
||||||
android:id="@+id/progressBar"
|
android:id="@+id/progressBar"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
|
|
|
@ -8,7 +8,7 @@ buildscript {
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta04'
|
classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta04'
|
||||||
classpath 'com.android.tools.build:gradle:3.3.2'
|
classpath 'com.android.tools.build:gradle:3.4.0'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,3 +18,4 @@ org.gradle.parallel=true
|
||||||
android.enableJetifier=true
|
android.enableJetifier=true
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
android.enableUnitTestBinaryResources=true
|
android.enableUnitTestBinaryResources=true
|
||||||
|
android.enableR8.fullMode=true
|
||||||
|
|
Loading…
Reference in New Issue