version update

This commit is contained in:
rimthekid 2022-03-05 14:33:01 +04:00
parent 466cbb4019
commit d30b20c65c
4 changed files with 15 additions and 23 deletions

View File

@ -10,8 +10,8 @@ android {
applicationId 'com.github.libretube' applicationId 'com.github.libretube'
minSdk 21 minSdk 21
targetSdk 31 targetSdk 31
versionCode 4 versionCode 5
versionName '0.2.2' versionName '0.2.3'
multiDexEnabled true multiDexEnabled true
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
resValue "string", "app_name", "LibreTube" resValue "string", "app_name", "LibreTube"

View File

@ -20,6 +20,19 @@
"versionName": "0.2.2", "versionName": "0.2.2",
"outputFile": "app-x86_64-release.apk" "outputFile": "app-x86_64-release.apk"
}, },
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "arm64-v8a"
}
],
"attributes": [],
"versionCode": 4,
"versionName": "0.2.2",
"outputFile": "app-arm64-v8a-release.apk"
},
{ {
"type": "ONE_OF_MANY", "type": "ONE_OF_MANY",
"filters": [ "filters": [
@ -45,19 +58,6 @@
"versionCode": 4, "versionCode": 4,
"versionName": "0.2.2", "versionName": "0.2.2",
"outputFile": "app-armeabi-v7a-release.apk" "outputFile": "app-armeabi-v7a-release.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "arm64-v8a"
}
],
"attributes": [],
"versionCode": 4,
"versionName": "0.2.2",
"outputFile": "app-arm64-v8a-release.apk"
} }
], ],
"elementType": "File" "elementType": "File"

View File

@ -83,12 +83,6 @@ class PlayerFragment : Fragment() {
arguments?.let { arguments?.let {
videoId = it.getString("videoId") videoId = it.getString("videoId")
} }
closeKeyboard()
}
private fun closeKeyboard() {
val inputMethodManager: InputMethodManager =
requireContext().getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
inputMethodManager.toggleSoftInput(InputMethodManager.HIDE_IMPLICIT_ONLY, 0)
} }
override fun onCreateView( override fun onCreateView(

View File

@ -5,8 +5,6 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
tools:context=".SearchFragment" tools:context=".SearchFragment"
android:focusable="true"
android:focusableInTouchMode="true"
> >
<com.google.android.material.card.MaterialCardView <com.google.android.material.card.MaterialCardView