以下のサイトを見ながら取り組んでいるのですがbeardedhenとTypefaceProviderで赤い波線が出ます。
https://akira-watson.com/android/android-bootstrap-library.html#1
build.gradle 内のdependenciesのバージョンはサイトを確認して合わせました(サイトの記載と同じ)。android:name=”.TestBootstrap”をAndroidManifest.xml に追加しました。
今のところここまでを行ったのですがエラー対処法がわかりません。またなぜエラーが出ているのでしょうか。
import android.app.Application; import com.beardedhen.androidbootstrap.TypefaceProvider; // Applicationを継承 public class TestBootstrap extends Application { @Override public void onCreate() { super.onCreate(); TypefaceProvider.registerDefaultIconSets(); } }
apply plugin: 'com.android.application' android { compileSdkVersion 29 buildToolsVersion "29.0.3" defaultConfig { applicationId "com.example.samplelibrary" minSdkVersion 15 targetSdkVersion 29 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' implementation 'com.beardedhen:androidbootstrap:2.3.2' } コード
回答1件
あなたの回答
tips
プレビュー