動画を見ながら学んでいるのですがandroid.support.v7.widget.cardviewが対応していませんでした。何をimplementationすればよいのかわかりません
以下のサイトに使い方が載っているのですが
Add this line to your Proguard config file
-keep class androidx.appcompat.widget.** { *; }
ここの記述がどこに書けばよいのかわかりません
https://github.com/ArthurHub/Android-Image-Cropper
-keep class androidx.appcompat.widget.** { *; }を追記
ファイル Gradle Scripts->proguard-rules.pro # Add project specific ProGuard rules here. # You can control the set of applied configuration files using the # proguardFiles setting in build.gradle. # # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html # If your project uses WebView with JS, uncomment the following # and specify the fully qualified class name to the JavaScript interface # class: #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; #} # Uncomment this to preserve the line number information for # debugging stack traces. #-keepattributes SourceFile,LineNumberTable # If you keep the line number information, uncomment this to # hide the original source file name. #-renamesourcefileattribute SourceFile -keep class androidx.appcompat.widget.** { *; }
下のソースコードを書くとMissing classesのエラーがでました
<?xml version="1.0" encoding="utf-8"?> <androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" app:cardElevation="3dp" app:cardUseCompatPadding="true" app:cardCornerRadius="3dp" app:cardBackgroundColor="#fff" app:contentPadding="5dp" android:layout_width="match_parent" android:layout_height="wrap_content"> <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_gravity="center_horizontal" android:orientation="horizontal"> <ImageView android:id="@+id/imageIcon" android:layout_width="100dp" android:layout_height="100dp" android:src="@mipmap/ic_launcher" /> </LinearLayout> </androidx.cardview.widget.CardView>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/20 15:23
2020/04/20 15:34
2020/04/21 09:06 編集
2020/04/23 08:16