This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* create following variables in your project level build.gradle file's extended block | |
* ext { | |
* lib_repo_username = "repo user name" | |
* lib_repo_password = "repo password" | |
* lib_repo_url = "lib repo url" | |
* lib_group_id = "group id" | |
* lib_artifact_id = "artifact id" | |
* lib_version_name = "version name" | |
* } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.support.annotation.NonNull; | |
import android.support.v7.widget.RecyclerView; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import java.util.ArrayList; | |
/** |