Как я могу добавить ButterKnife локально (без удаленных зависимостей)

#android #butterknife

#Android #butterknife

Вопрос:

Я загрузил ‘butterknife-8.8.1.aar’, ‘butterknife-annotations-8.8.1.jar ‘и’butterknife-compiler-8.8.1.jar ‘ и добавлен в проект. Когда я запускаю приложение, я получаю исключение NullPointer для представления.

 public class MainActivity extends AppCompatActivity {

@BindView(R.id.tv_welcome)
TextView textView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    ButterKnife.bind(this);
    textView.setText("Butter knife worked!");
}
}
  

XML

 <TextView
    android:id="@ id/tv_welcome"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />
  

Файл Gradle

 dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
// ButterKnife
implementation files('libs/butterknife-annotations-8.8.1.jar')
implementation files('libs/butterknife-compiler-8.8.1.jar')
implementation project(':butterknife-8.8.1')}
  

Комментарии:

1. Показать код. Показать журнал сбоев.

Ответ №1:

Если вы правильно добавите его в gradle и соберете, то приложение, которое оно должно добавить butterknife в ваше приложение автоматически. Нет необходимости в ручной загрузке.

только это должно выполнить работу:

 dependencies {
 implementation 'com.jakewharton:butterknife-gradle-plugin:10.1.0'
}
  

Комментарии:

1. Я требую добавить все зависимости в виде файлов jar или .aar.

2. Это просто исключение NullPointer, потому что просмотр не привязан ButterKnife

3. вы пробовали это с обычным activity ?

Ответ №2:

Для работы ButterKnife нам нужно добавить три модуля:

  • butterknife-аннотации
  • butterknife-отразить
  • butterknife-среда выполнения

     проект реализации (':butterknife-аннотации')
     проект реализации (':butterknife-reflect')
     проект реализации (':butterknife-runtime')