mirror of
https://github.com/KitsunePie/AppErrorsTracking.git
synced 2025-09-01 16:55:18 +08:00
Revert "Fix "tooltipText" attrs bellowed Android 8.x"
Changed only support minSdk 27
This commit is contained in:
@@ -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 对话框),我曾以为这一直是一个特性,直到我去反编译了系统框架,才确认确实是被删掉了。
|
||||
|
@@ -21,7 +21,7 @@ android {
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.fankes.apperrorstracking"
|
||||
minSdk 21
|
||||
minSdk 27
|
||||
targetSdk 31
|
||||
versionCode rootProject.ext.appVersionCode
|
||||
versionName rootProject.ext.appVersionName
|
||||
|
@@ -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
|
||||
|
@@ -19,7 +19,7 @@ android {
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
minSdk 21
|
||||
minSdk 27
|
||||
targetSdk 31
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
Reference in New Issue
Block a user