Revert "Fix "tooltipText" attrs bellowed Android 8.x"

Changed only support minSdk 27
This commit is contained in:
2022-05-11 14:38:46 +08:00
parent 8cabb24937
commit e386e1fa42
4 changed files with 8 additions and 6 deletions

View File

@@ -8,6 +8,8 @@ Added more features to app's crash dialog, fixed custom rom deleted dialog, the
此项目为 Xposed 模块,可用在任何 Android 系统中,目前仅在 **LSPosed** 中测试通过。
> 最低支持 Android 8.1
## Project Reason
我实在是不能理解,国内 ROM 除了 MIUI(稳定版除外) 都选择了删除应用程序崩溃的对话框(FC 对话框),我曾以为这一直是一个特性,直到我去反编译了系统框架,才确认确实是被删掉了。

View File

@@ -21,7 +21,7 @@ android {
defaultConfig {
applicationId "com.fankes.apperrorstracking"
minSdk 21
minSdk 27
targetSdk 31
versionCode rootProject.ext.appVersionCode
versionName rootProject.ext.appVersionName

View File

@@ -28,7 +28,7 @@
android:layout_marginEnd="20dp"
android:src="@mipmap/ic_back"
android:tint="@color/colorTextGray"
app:tooltipText="@string/back" />
android:tooltipText="@string/back" />
<TextView
android:layout_width="0dp"
@@ -48,7 +48,7 @@
android:layout_marginEnd="15dp"
android:src="@drawable/ic_print"
android:tint="@color/colorTextGray"
app:tooltipText="@string/print_to_logcat" />
android:tooltipText="@string/print_to_logcat" />
<androidx.constraintlayout.utils.widget.ImageFilterView
android:id="@+id/copy_icon"
@@ -57,7 +57,7 @@
android:layout_marginEnd="15dp"
android:src="@drawable/ic_copy"
android:tint="@color/colorTextGray"
app:tooltipText="@string/copy_error_stack" />
android:tooltipText="@string/copy_error_stack" />
<androidx.constraintlayout.utils.widget.ImageFilterView
android:id="@+id/export_icon"
@@ -66,7 +66,7 @@
android:layout_marginEnd="10dp"
android:src="@drawable/ic_export"
android:tint="@color/colorTextGray"
app:tooltipText="@string/export_to_file" />
android:tooltipText="@string/export_to_file" />
</LinearLayout>
<androidx.core.widget.NestedScrollView

View File

@@ -19,7 +19,7 @@ android {
}
defaultConfig {
minSdk 21
minSdk 27
targetSdk 31
versionCode 1
versionName "1.0"