Fix release
This commit is contained in:
parent
3141500c53
commit
4bbeb284da
|
@ -10,8 +10,8 @@ android {
|
||||||
compileSdk 34
|
compileSdk 34
|
||||||
minSdkVersion 26
|
minSdkVersion 26
|
||||||
targetSdkVersion 32
|
targetSdkVersion 32
|
||||||
versionCode 10
|
versionCode 12
|
||||||
versionName "0.7.0"
|
versionName "0.8.1"
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
}
|
}
|
||||||
|
|
|
@ -129,7 +129,7 @@ class ReproductorActivity : AppCompatActivity() {
|
||||||
binding.reportLayout.setOnClickListener { reportIntent() }
|
binding.reportLayout.setOnClickListener { reportIntent() }
|
||||||
fullscreenButton.setOnClickListener { toggleFullscreen() }
|
fullscreenButton.setOnClickListener { toggleFullscreen() }
|
||||||
fullscreenButton2.setOnClickListener { toggleFullscreen() }
|
fullscreenButton2.setOnClickListener { toggleFullscreen() }
|
||||||
binding.downloadLayout!!.setOnClickListener { downloadVideo() }
|
binding.downloadLayout.setOnClickListener { downloadVideo() }
|
||||||
|
|
||||||
|
|
||||||
binding.userImg.setOnClickListener {
|
binding.userImg.setOnClickListener {
|
||||||
|
|
|
@ -170,6 +170,35 @@
|
||||||
android:textAlignment="center" />
|
android:textAlignment="center" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/downloadLayout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:visibility="visible">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/downloadImage"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:adjustViewBounds="false"
|
||||||
|
android:contentDescription="@string/reportBtn"
|
||||||
|
android:cropToPadding="false"
|
||||||
|
android:visibility="visible"
|
||||||
|
app:srcCompat="@drawable/ic_outline_cloud_download_24"
|
||||||
|
app:tint="#585858" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/downloadText"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="@string/downloadText"
|
||||||
|
android:textAlignment="center" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/reportLayout"
|
android:id="@+id/reportLayout"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|
Loading…
Reference in New Issue