Skip to content

Commit 45010fd

Browse files
committed
Use same build tools for app and library
1 parent b390da9 commit 45010fd

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 22
5-
buildToolsVersion "23.0.0"
5+
buildToolsVersion "22.0.1"
66

77
defaultConfig {
88
applicationId "com.firebase.uidemo"

library/library.iml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/java" isTestSource="true" />
6666
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/jni" isTestSource="true" />
6767
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/rs" isTestSource="true" />
68+
<excludeFolder url="file://$MODULE_DIR$/build/docs" />
6869
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/assets" />
6970
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/bundles" />
7071
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/classes" />

library/src/main/java/com/firebase/ui/FirebaseRecyclerViewAdapter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public void onBindViewHolder(VH viewHolder, int position) {
186186
* this class. The third argument is the item's position in the list.
187187
* <p>
188188
* Your implementation should populate the view using the data contained in the model.
189-
* You should implement either this method or the other {@link FirebaseRecyclerViewAdapter#populateViewHolder(VH, Object)} method
189+
* You should implement either this method or the other FirebaseRecyclerViewAdapter#populateViewHolder(VH, Object) method
190190
* but not both.
191191
*
192192
* @param viewHolder The view to populate
@@ -199,7 +199,7 @@ protected void populateViewHolder(VH viewHolder, T model, int position) {
199199
/**
200200
* This is a backwards compatible version of populateViewHolder.
201201
* <p>
202-
* You should implement either this method or the other {@link FirebaseRecyclerViewAdapter#populateViewHolder(VH, Object, int)} method
202+
* You should implement either this method or the other FirebaseRecyclerViewAdapter#populateViewHolder(VH, T, int) method
203203
* but not both.
204204
*
205205
* @see FirebaseListAdapter#populateView(View, Object, int)

0 commit comments

Comments
 (0)