Skip to content

Commit ac1fb39

Browse files
SUPERCILEXsamtstern
authored andcommitted
Add and enforce checkstyle, lint, findbugs, and pmd (firebase#420)
1 parent 5bb61d1 commit ac1fb39

File tree

93 files changed

+1179
-799
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+1179
-799
lines changed

.gitignore

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
.gradle
2+
/**/*.iml
23
/local.properties
34
.idea
45
.DS_Store
56
/build
6-
/captures
7-
/library/target
8-
/**/*.iml
97
google-services.json
10-
build/

.travis.yml

+38-5
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,45 @@ cache:
1111
- $HOME/.gradle/wrapper/
1212
android:
1313
components:
14-
- platform-tools
1514
- tools
1615
- build-tools-25.0.1
1716
- android-25
18-
19-
# Extras
20-
- extra-google-m2repository
17+
- platform-tools
2118
- extra-android-m2repository
22-
script: ./gradlew clean :library:testAll :library:prepareArtifacts
19+
- extra-google-m2repository
20+
before_script: mv library/google-services.json app/google-services.json
21+
script: ./gradlew clean assembleDebug check
22+
after_failure:
23+
# tests
24+
- cat app/build/reports/tests/testDebugUnitTest/index.html
25+
- cat auth/build/reports/tests/testDebugUnitTest/index.html
26+
- cat database/build/reports/tests/testDebugUnitTest/index.html
27+
- cat storage/build/reports/tests/testDebugUnitTest/index.html
28+
29+
# app
30+
- cat app/build/reports/checkstyle.html
31+
- cat app/build/reports/lint-results.xml
32+
- cat app/build/reports/lint-results.html
33+
- cat app/build/reports/findbugs.html
34+
- cat app/build/reports/pmd.html
35+
36+
# auth
37+
- cat auth/build/reports/checkstyle.html
38+
- cat auth/build/reports/lint-results.xml
39+
- cat auth/build/reports/lint-results.html
40+
- cat auth/build/reports/findbugs.html
41+
- cat auth/build/reports/pmd.html
42+
43+
# database
44+
- cat database/build/reports/checkstyle.html
45+
- cat database/build/reports/lint-results.xml
46+
- cat database/build/reports/lint-results.html
47+
- cat database/build/reports/findbugs.html
48+
- cat database/build/reports/pmd.html
49+
50+
# storage
51+
- cat storage/build/reports/checkstyle.html
52+
- cat storage/build/reports/lint-results.xml
53+
- cat storage/build/reports/lint-results.html
54+
- cat storage/build/reports/findbugs.html
55+
- cat storage/build/reports/pmd.html

app/build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
apply plugin: 'com.android.application'
22
apply plugin: 'com.neenbedankt.android-apt'
3-
apply from: "../common/constants.gradle"
3+
apply from: "../constants.gradle"
4+
apply from: '../library/quality/quality.gradle'
45

56
android {
67
compileSdkVersion compileSdk

app/src/main/AndroidManifest.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
<application
1010
android:name=".auth.LeakCatcher"
1111
android:allowBackup="true"
12+
android:fullBackupContent="true"
1213
android:icon="@mipmap/ic_launcher"
1314
android:label="@string/app_name"
14-
android:theme="@style/AppTheme">
15+
android:theme="@style/AppTheme"
16+
android:supportsRtl="true">
1517
<activity android:name=".ChooserActivity">
1618
<intent-filter>
1719
<action android:name="android.intent.action.MAIN"/>

app/src/main/java/com/firebase/uidemo/ChooserActivity.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -77,22 +77,21 @@ public void onItemClick(int position) {
7777
public static class MyArrayAdapter extends ArrayAdapter<Class> {
7878

7979
private Context mContext;
80-
private Class[] mClasses;
8180

82-
public MyArrayAdapter(Context context, int resource, Class[] objects) {
81+
public MyArrayAdapter(Context context, int resource, Class... objects) {
8382
super(context, resource, objects);
84-
8583
mContext = context;
86-
mClasses = objects;
8784
}
8885

8986
@Override
9087
public View getView(int position, View convertView, ViewGroup parent) {
91-
View view = convertView;
88+
View view;
9289

9390
if (convertView == null) {
9491
LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(LAYOUT_INFLATER_SERVICE);
9592
view = inflater.inflate(android.R.layout.simple_list_item_2, null);
93+
} else {
94+
view = convertView;
9695
}
9796

9897
((TextView) view.findViewById(android.R.id.text1)).setText(DESCRIPTION_NAMES[position]);

app/src/main/java/com/firebase/uidemo/auth/SignedInActivity.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@
2828
import android.view.View;
2929
import android.widget.ImageView;
3030
import android.widget.TextView;
31-
import butterknife.BindView;
32-
import butterknife.ButterKnife;
33-
import butterknife.OnClick;
31+
3432
import com.bumptech.glide.Glide;
3533
import com.firebase.ui.auth.AuthUI;
3634
import com.firebase.ui.auth.IdpResponse;
@@ -42,8 +40,13 @@
4240
import com.google.firebase.auth.FirebaseAuth;
4341
import com.google.firebase.auth.FirebaseUser;
4442
import com.google.firebase.auth.GoogleAuthProvider;
43+
4544
import java.util.Iterator;
4645

46+
import butterknife.BindView;
47+
import butterknife.ButterKnife;
48+
import butterknife.OnClick;
49+
4750
public class SignedInActivity extends AppCompatActivity {
4851
private static final String EXTRA_IDP_RESPONSE = "extra_idp_response";
4952

@@ -144,7 +147,7 @@ private void populateProfile() {
144147
mUserDisplayName.setText(
145148
TextUtils.isEmpty(user.getDisplayName()) ? "No display name" : user.getDisplayName());
146149

147-
StringBuilder providerList = new StringBuilder();
150+
StringBuilder providerList = new StringBuilder(100);
148151

149152
providerList.append("Providers used: ");
150153

app/src/main/java/com/firebase/uidemo/database/ChatActivity.java

+28-19
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,9 @@
4747
import com.google.firebase.database.Query;
4848

4949
public class ChatActivity extends AppCompatActivity implements FirebaseAuth.AuthStateListener {
50-
51-
public static final String TAG = "RecyclerViewDemo";
50+
private static final String TAG = "RecyclerViewDemo";
5251

5352
private FirebaseAuth mAuth;
54-
private DatabaseReference mRef;
5553
private DatabaseReference mChatRef;
5654
private Button mSendButton;
5755
private EditText mMessageEdit;
@@ -71,8 +69,7 @@ protected void onCreate(Bundle savedInstanceState) {
7169
mSendButton = (Button) findViewById(R.id.sendButton);
7270
mMessageEdit = (EditText) findViewById(R.id.messageEdit);
7371

74-
mRef = FirebaseDatabase.getInstance().getReference();
75-
mChatRef = mRef.child("chats");
72+
mChatRef = FirebaseDatabase.getInstance().getReference().child("chats");
7673

7774
mSendButton.setOnClickListener(new View.OnClickListener() {
7875
@Override
@@ -146,7 +143,7 @@ private void attachRecyclerViewAdapter() {
146143
@Override
147144
public void populateViewHolder(ChatHolder chatView, Chat chat, int position) {
148145
chatView.setName(chat.getName());
149-
chatView.setText(chat.getText());
146+
chatView.setText(chat.getMessage());
150147

151148
FirebaseUser currentUser = mAuth.getCurrentUser();
152149
if (currentUser != null && chat.getUid().equals(currentUser.getUid())) {
@@ -188,7 +185,7 @@ public void onComplete(@NonNull Task<AuthResult> task) {
188185
}
189186

190187
public boolean isSignedIn() {
191-
return (mAuth.getCurrentUser() != null);
188+
return mAuth.getCurrentUser() != null;
192189
}
193190

194191
public void updateUI() {
@@ -198,30 +195,42 @@ public void updateUI() {
198195
}
199196

200197
public static class Chat {
201-
202-
String name;
203-
String text;
204-
String uid;
198+
private String mName;
199+
private String mMessage;
200+
private String mUid;
205201

206202
public Chat() {
203+
// Needed for Firebase
207204
}
208205

209-
public Chat(String name, String uid, String message) {
210-
this.name = name;
211-
this.text = message;
212-
this.uid = uid;
206+
public Chat(String name, String message, String uid) {
207+
mName = name;
208+
mMessage = message;
209+
mUid = uid;
213210
}
214211

215212
public String getName() {
216-
return name;
213+
return mName;
214+
}
215+
216+
public void setName(String name) {
217+
mName = name;
218+
}
219+
220+
public String getMessage() {
221+
return mMessage;
222+
}
223+
224+
public void setMessage(String message) {
225+
mMessage = message;
217226
}
218227

219228
public String getUid() {
220-
return uid;
229+
return mUid;
221230
}
222231

223-
public String getText() {
224-
return text;
232+
public void setUid(String uid) {
233+
mUid = uid;
225234
}
226235
}
227236

app/src/main/res/drawable/chat_message_arrow.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
<stroke
1111
android:color="@android:color/transparent"
1212
android:width="10dp"/>
13-
<solid android:color="@color/material_grey_300"/>
13+
<solid android:color="@color/material_gray_300"/>
1414
</shape>
1515
</rotate>

app/src/main/res/drawable/chat_message_background.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
android:shape="rectangle">
55
<corners android:radius="4dp"/>
6-
<solid android:color="@color/material_grey_300"/>
6+
<solid android:color="@color/material_gray_300"/>
77
</shape>

app/src/main/res/layout/activity_chat.xml

+5-4
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,24 @@
2626
android:layout_alignParentLeft="true"
2727
android:layout_alignParentStart="true"
2828
android:orientation="horizontal"
29-
android:paddingStart="16dp"
3029
android:paddingEnd="16dp"
31-
android:paddingLeft="16dp">
30+
android:paddingLeft="16dp"
31+
android:paddingStart="16dp">
3232

3333
<EditText
3434
android:id="@+id/messageEdit"
3535
android:layout_width="0dp"
3636
android:layout_height="wrap_content"
37-
android:layout_weight="1"/>
37+
android:layout_weight="1"
38+
android:inputType="text"/>
3839

3940
<Button
4041
android:id="@+id/sendButton"
4142
style="@style/Widget.AppCompat.Button.Borderless.Colored"
4243
android:layout_width="wrap_content"
4344
android:layout_height="wrap_content"
4445
android:layout_gravity="bottom|end"
45-
android:text="Send"/>
46+
android:text="@string/send"/>
4647

4748
</LinearLayout>
4849

app/src/main/res/layout/activity_image.xml

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@
1515
style="@style/TextAppearance.AppCompat.Medium"
1616
android:layout_width="wrap_content"
1717
android:layout_height="wrap_content"
18-
android:text="Upload"/>
18+
android:text="@string/upload"/>
1919

2020
<Button
2121
android:id="@+id/button_choose_photo"
2222
android:layout_width="wrap_content"
2323
android:layout_height="wrap_content"
24-
android:text="Choose Image"/>
24+
android:text="@string/choose_image"/>
2525

2626
<TextView
2727
style="@style/TextAppearance.AppCompat.Medium"
2828
android:layout_width="wrap_content"
2929
android:layout_height="wrap_content"
3030
android:layout_marginTop="20dp"
31-
android:text="Download"/>
31+
android:text="@string/download"/>
3232

3333
<LinearLayout
3434
android:layout_width="wrap_content"
@@ -40,14 +40,15 @@
4040
android:layout_width="wrap_content"
4141
android:layout_height="wrap_content"
4242
android:enabled="false"
43-
android:text="Download"/>
43+
android:text="@string/download"/>
4444

4545
</LinearLayout>
4646

4747
<ImageView
4848
android:id="@+id/first_image"
4949
android:layout_width="match_parent"
5050
android:layout_height="match_parent"
51+
android:contentDescription="@string/accessibility_downloaded_image"
5152
android:scaleType="centerCrop"
5253
android:src="#E6E6E6"
5354
android:visibility="invisible"

app/src/main/res/layout/auth_ui_layout.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
android:layout_marginLeft="24dp"
1414
android:layout_marginRight="24dp"
1515
android:layout_marginTop="16dp"
16-
android:paddingBottom="32dp"
17-
android:orientation="vertical">
16+
android:orientation="vertical"
17+
android:paddingBottom="32dp">
1818

1919
<TextView
2020
style="@style/Base.TextAppearance.AppCompat.Headline"
@@ -167,8 +167,8 @@
167167
</RadioGroup>
168168

169169
<TextView
170-
style="@style/Base.TextAppearance.AppCompat.Subhead"
171170
android:id="@+id/facebook_scopes_label"
171+
style="@style/Base.TextAppearance.AppCompat.Subhead"
172172
android:layout_width="wrap_content"
173173
android:layout_height="wrap_content"
174174
android:layout_marginBottom="8dp"
@@ -190,8 +190,8 @@
190190
android:text="@string/photos"/>
191191

192192
<TextView
193-
style="@style/Base.TextAppearance.AppCompat.Subhead"
194193
android:id="@+id/google_scopes_label"
194+
style="@style/Base.TextAppearance.AppCompat.Subhead"
195195
android:layout_width="wrap_content"
196196
android:layout_height="wrap_content"
197197
android:layout_marginBottom="8dp"
@@ -210,7 +210,7 @@
210210
android:layout_width="wrap_content"
211211
android:layout_height="wrap_content"
212212
android:checked="false"
213-
android:text="Drive File"/>
213+
android:text="@string/drive_file"/>
214214

215215
<TextView
216216
style="@style/Base.TextAppearance.AppCompat.Subhead"

0 commit comments

Comments
 (0)