This file contains hidden or 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
The app need to be written in Java, Kotlin or both | |
App Description | |
- The app must list all public gist with pagination (the number of gists per page is up to you) | |
- Each gist must show author name with avatar, Gist title and language | |
- Show gist details in another screen (Fragment or Activity), with the following infos: author name with avatar, gist title and language | |
- Display raw file content in another screen | |
- Must have an option to save the gist as favorite (device storage) | |
- Botton Navigation with: Home, Favorites, About App (with logout button) |
This file contains hidden or 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
package br.com.gv8.rdias.pesquisa.sincronizacao; | |
import java.io.File; | |
import java.io.FileFilter; | |
import java.io.FileInputStream; | |
import java.io.InputStream; | |
import java.io.PrintWriter; | |
import java.io.StringWriter; | |
import java.sql.Connection; | |
import java.sql.DriverManager; |
This file contains hidden or 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
package br.com.redeife.Adpater; | |
import android.content.Context; | |
import android.support.v4.content.ContextCompat; | |
import android.support.v7.widget.CardView; | |
import android.support.v7.widget.RecyclerView; | |
import android.util.Log; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; |