feature_board_view #28
No reviewers
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: kanban/wedroid#28
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "feature_board_view"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -69,6 +71,7 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.2.0'
where this dependency has been used?
this dependecies are not used, I delete them.
@ -79,2 +82,4 @@
androidTestImplementation "androidx.arch.core:core-testing:$rootProject.androidxArchVersion"
androidTestImplementation "androidx.arch.core:core-testing:$rootProject.coreTestingVersion"
testImplementation 'org.mockito:mockito-core:2.19.0'
Where this dependency has been used?
@ -0,0 +59,4 @@
Intent i = getIntent();
idBoard = i.getStringExtra("idBoard");
getListsButton = findViewById(R.id.getLists);
I think it would be better to group all these
findViewById
in one function to make the code more readable.ok, I review it