Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Final "TrendingRepos" Android Project #2

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
29 changes: 29 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 31 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Mobile Coding Challenge
# # Android TrendingRepos

## Idea of the App
The task is to implement a small app that will list the most starred Github repos that were created in the last 30 days.
A small app that will list the most starred Github repos that were created in the last 30 days.
You'll be fetching the sorted JSON data directly from the Github API (Github API explained down below).

## Features
Expand All @@ -14,12 +14,6 @@ You'll be fetching the sorted JSON data directly from the Github API (Github API
* Username and avatar of the owner.
* [BONUS] As a User I should be able to keep scrolling and new results should appear (pagination).

## Things to keep in mind 🚨
* Features are less important than code quality. Put more focus on code quality and less on speed and number of features implemented.
* Your code will be evaluated based on: code structure, programming best practices, legibility (and not number of features implemented or speed).
* The git commit history (and git commit messages) will be also evaluated.
* Do not forget to include few details about the project in the README (e.g explain choice of libraries, how to run it ...)

## How to get the data from Github
To get the most starred Github repos created in the last 30 days (relative to 2017-11-22), you'll need to call the following endpoint :

Expand All @@ -36,18 +30,40 @@ To get the 3rd page, you add `&page=3` ... etc
You can read more about the Github API over [here](https://developer.github.com/v3/search/#search-repositories
).

#### Android Gradle
```gradle
dependencies {
implementation 'androidx.cardview:cardview:1.0.0-beta01'
implementation 'androidx.recyclerview:recyclerview:1.0.0-beta01'
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.squareup.picasso:picasso:2.71828'
}
```

## Installation
Clone this repository and import into **Android Studio**
```bash
git clone [email protected]:simolabsoft/mobile-coding-challenge.git
```
## Build variants
Use the Android Studio *Build Variants* button to choose between **production** and **staging** flavors combined with debug and release build types

## Maintainers
This project is mantained by:
* [United Remote](https://github.com/hiddenfounders)
* [Mohammed Labied](https://github.com/simolabsoft)

## Mockups
![alt text](https://raw.githubusercontent.com/hiddenfounders/mobile-coding-challenge/master/mockup.png)
![alt text](https://raw.githubusercontent.com/simolabsoft/mobile-coding-challenge/master/image.png)

Here's what each element represents :

![alt text](https://raw.githubusercontent.com/hiddenfounders/mobile-coding-challenge/master/row-explained.png)


## Technologies to use
Choose whatever mobile platform you're most familiar with.
## Technologies used
- Java
- android SDk
- picasso Lib
- Volley Lib

* For iOS, feel free to use Swift or Objective-C.
* For Android, feel free to use Kotlin or Java.


1 change: 1 addition & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
32 changes: 32 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.simo.recylerviewjsonexample"
minSdkVersion 25
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
implementation 'androidx.cardview:cardview:1.0.0-beta01'
implementation 'androidx.recyclerview:recyclerview:1.0.0-beta01'
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.squareup.picasso:picasso:2.71828'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
}
21 changes: 21 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package com.simo.recylerviewjsonexample;

import android.content.Context;
import androidx.test.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;

import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.*;

/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();

assertEquals("com.simo.recylerviewjsonexample", appContext.getPackageName());
}
}
21 changes: 21 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.simo.recylerviewjsonexample">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="Trending Repos"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.simo.recylerviewjsonexample.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
package com.simo.recylerviewjsonexample;

import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

import com.squareup.picasso.Picasso;

import java.util.ArrayList;

import androidx.recyclerview.widget.RecyclerView;

public class ExampleAdapter extends RecyclerView.Adapter<ExampleAdapter.ExampleViewHolder> {
private Context mContext;
private ArrayList<ExampleItem> mExampleList;

public ExampleAdapter(Context context, ArrayList<ExampleItem> exampleList) {
mContext = context;
mExampleList = exampleList;
}

@Override
public ExampleViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View v = LayoutInflater.from(mContext).inflate(R.layout.example_item, parent, false);
return new ExampleViewHolder(v);
}

@Override
public void onBindViewHolder(ExampleViewHolder holder, int position) {
ExampleItem currentItem = mExampleList.get(position);

String repoAvatarImg = currentItem.getRepoAvatarImg();
String repoOwner = currentItem.getRepoOwner();
String repoName = currentItem.getRepoName();
String repoDescription = currentItem.getRepoDescription();
double stars = currentItem.getStars();

holder.mRepoName.setText(repoName);
holder.mRepoStars.setText(stars+"k");
holder.mRepoDescription.setText(repoDescription);
holder.mRepoOwner.setText(repoOwner);
// picasso mechanism get Image from the API
Picasso.get().load(repoAvatarImg).fit().centerInside().into(holder.mRepoAvatarImg);
}

@Override
public int getItemCount() {
return mExampleList.size();
}

public class ExampleViewHolder extends RecyclerView.ViewHolder {
public ImageView mRepoAvatarImg;
public TextView mRepoName;
public TextView mRepoStars;
public TextView mRepoDescription;
public TextView mRepoOwner;

public ExampleViewHolder(View itemView) {
super(itemView);
mRepoAvatarImg = itemView.findViewById(R.id.repoAvatarImg);
mRepoName = itemView.findViewById(R.id.repoName);
mRepoStars = itemView.findViewById(R.id.stars);
mRepoDescription = itemView.findViewById(R.id.repoDescription);
mRepoOwner = itemView.findViewById(R.id.repoOwner);
}
}
}
35 changes: 35 additions & 0 deletions app/src/main/java/com/simo/recylerviewjsonexample/ExampleItem.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
package com.simo.recylerviewjsonexample;

public class ExampleItem {
private String mRepoAvatarImg;
private String mRepoOwner;
private double mStars;
private String mRepoDescription;
private String mRepoName;


public ExampleItem(String repoAvatarImg, String repoOwner, double stars,String repoDescription,String repoName) {
mRepoAvatarImg = repoAvatarImg;
mRepoOwner = repoOwner;
mStars =stars;
mRepoDescription = repoDescription;
mRepoName = repoName;
}

public String getRepoAvatarImg() {
return mRepoAvatarImg;
}

public String getRepoDescription() {
return mRepoDescription;
}

public String getRepoOwner() {
return mRepoOwner;
}

public double getStars() {
return mStars;
}
public String getRepoName() { return mRepoName; }
}
Loading