├── apps ├── .idea │ ├── .name │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── encodings.xml │ ├── vcs.xml │ ├── modules.xml │ ├── misc.xml │ ├── gradle.xml │ └── compiler.xml ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── icnac1.png │ │ │ │ │ ├── icnac2.png │ │ │ │ │ ├── icnh.png │ │ │ │ │ ├── fluxbtn.png │ │ │ │ │ ├── icnappr.png │ │ │ │ │ ├── groupebtn.png │ │ │ │ │ ├── partagebtn.png │ │ │ │ │ ├── videophotobtn.png │ │ │ │ │ ├── calendrierbutton.png │ │ │ │ │ ├── matchdujourbtn.png │ │ │ │ │ └── plandesstadebtn.png │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── fragment_apropos.xml │ │ │ │ │ ├── fragment_historique.xml │ │ │ │ │ └── fragment_main.xml │ │ │ │ ├── menu │ │ │ │ │ └── menu_main.xml │ │ │ │ └── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── miagegi │ │ │ │ └── gdg │ │ │ │ └── can2015 │ │ │ │ ├── FragmentHistorique.java │ │ │ │ ├── FragmentApropos.java │ │ │ │ ├── FragmentAccueil.java │ │ │ │ └── MainActivity.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── miagegi │ │ │ └── gdg │ │ │ └── can2015 │ │ │ └── ApplicationTest.java │ ├── build.gradle │ ├── proguard-rules.pro │ └── app.iml ├── settings.gradle ├── .gitignore ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── build.gradle ├── gradle.properties ├── Can2015.iml ├── gradlew.bat └── gradlew ├── .gitignore ├── README.md └── LICENSE /apps/.idea/.name: -------------------------------------------------------------------------------- 1 | Can2015 -------------------------------------------------------------------------------- /apps/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /apps/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /apps/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | -------------------------------------------------------------------------------- /apps/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/bg.png -------------------------------------------------------------------------------- /apps/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/button.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/icnac1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/icnac1.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/icnac2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/icnac2.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/icnh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/icnh.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/fluxbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/fluxbtn.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/icnappr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/icnappr.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/groupebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/groupebtn.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/partagebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/partagebtn.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/videophotobtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/videophotobtn.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/calendrierbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/calendrierbutton.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/matchdujourbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/matchdujourbtn.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable/plandesstadebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable/plandesstadebtn.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/CAN-2015/master/apps/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /apps/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /apps/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /apps/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /apps/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /apps/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /apps/app/src/main/res/layout/fragment_apropos.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /apps/app/src/main/res/layout/fragment_historique.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /apps/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apps/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /apps/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | 19 | # Local configuration file (sdk path, etc) 20 | local.properties 21 | 22 | # Proguard folder generated by Eclipse 23 | proguard/ 24 | 25 | # Log Files 26 | *.log 27 | -------------------------------------------------------------------------------- /apps/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apps/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Can2015 5 | Accueil 6 | Historique 7 | A propos 8 | Hello world! 9 | Settings 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/app/src/androidTest/java/com/miagegi/gdg/can2015/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.miagegi.gdg.can2015; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | CAN-2015 2 | ======== 3 | 4 | La Coupe d'Afrique des nations, couramment abrégée en CAN, est la plus importante compétition internationale de football en Afrique. Elle est organisée par la Confédération africaine de football (CAF) et met aux prises les sélections nationales africaines. Cette compétition, disputée tous les deux ans, s'est déroulée pour la première fois en 1957 au Soudan. Le gagnant se qualifie pour la Coupe des confédérations. Il s'agira de construire une application pour l’édition 2015 5 | -------------------------------------------------------------------------------- /apps/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.0.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /apps/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /apps/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 21 5 | buildToolsVersion "21.1.2" 6 | 7 | defaultConfig { 8 | applicationId "com.miagegi.gdg.can2015" 9 | minSdkVersion 13 10 | targetSdkVersion 21 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(dir: 'libs', include: ['*.jar']) 24 | compile 'com.android.support:appcompat-v7:21.0.3' 25 | } 26 | -------------------------------------------------------------------------------- /apps/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /apps/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in C:\Users\HP PROBOOK\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /apps/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /apps/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /apps/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true -------------------------------------------------------------------------------- /apps/Can2015.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /apps/app/src/main/java/com/miagegi/gdg/can2015/FragmentHistorique.java: -------------------------------------------------------------------------------- 1 | package com.miagegi.gdg.can2015; 2 | 3 | import android.os.Bundle; 4 | import android.support.v4.app.Fragment; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | 9 | 10 | public class FragmentHistorique extends Fragment { 11 | 12 | private static final String ARG_SECTION_NUMBER = "section_number"; 13 | 14 | public static FragmentHistorique newInstance(int sectionNumber) { 15 | FragmentHistorique fragment = new FragmentHistorique(); 16 | Bundle args = new Bundle(); 17 | args.putInt(ARG_SECTION_NUMBER, sectionNumber); 18 | fragment.setArguments(args); 19 | return fragment; 20 | } 21 | 22 | @Override 23 | public void onCreate(Bundle savedInstanceState) { 24 | super.onCreate(savedInstanceState); 25 | } 26 | 27 | 28 | 29 | @Override 30 | public View onCreateView(LayoutInflater inflater, ViewGroup container, 31 | Bundle savedInstanceState) { 32 | View rootView = inflater.inflate(R.layout.fragment_historique, container, false); 33 | return rootView; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /apps/app/src/main/java/com/miagegi/gdg/can2015/FragmentApropos.java: -------------------------------------------------------------------------------- 1 | package com.miagegi.gdg.can2015; 2 | 3 | import android.os.Bundle; 4 | import android.support.v4.app.Fragment; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | 9 | /** 10 | * Created by HP PROBOOK on 09/01/2015. 11 | */ 12 | public class FragmentApropos extends Fragment { 13 | 14 | private static final String ARG_SECTION_NUMBER = "section_number"; 15 | 16 | public static FragmentApropos newInstance(int sectionNumber) { 17 | FragmentApropos fragment = new FragmentApropos(); 18 | Bundle args = new Bundle(); 19 | args.putInt(ARG_SECTION_NUMBER, sectionNumber); 20 | fragment.setArguments(args); 21 | return fragment; 22 | } 23 | 24 | @Override 25 | public void onCreate(Bundle savedInstanceState) { 26 | super.onCreate(savedInstanceState); 27 | } 28 | 29 | 30 | 31 | @Override 32 | public View onCreateView(LayoutInflater inflater, ViewGroup container, 33 | Bundle savedInstanceState) { 34 | View rootView = inflater.inflate(R.layout.fragment_apropos, container, false); 35 | return rootView; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /apps/app/src/main/java/com/miagegi/gdg/can2015/FragmentAccueil.java: -------------------------------------------------------------------------------- 1 | package com.miagegi.gdg.can2015; 2 | 3 | import android.os.Bundle; 4 | import android.support.annotation.Nullable; 5 | import android.support.v4.app.Fragment; 6 | import android.view.LayoutInflater; 7 | import android.view.View; 8 | import android.view.ViewGroup; 9 | 10 | /** 11 | * Created by HP PROBOOK on 09/01/2015. 12 | */ 13 | public class FragmentAccueil extends Fragment { 14 | 15 | private static final String ARG_SECTION_NUMBER = "section_number"; 16 | 17 | public static FragmentAccueil newInstance(int sectionNumber) { 18 | FragmentAccueil fragment = new FragmentAccueil(); 19 | Bundle args = new Bundle(); 20 | args.putInt(ARG_SECTION_NUMBER, sectionNumber); 21 | fragment.setArguments(args); 22 | return fragment; 23 | } 24 | 25 | @Override 26 | public void onCreate(Bundle savedInstanceState) { 27 | super.onCreate(savedInstanceState); 28 | } 29 | 30 | 31 | 32 | @Override 33 | public View onCreateView(LayoutInflater inflater, ViewGroup container, 34 | Bundle savedInstanceState) { 35 | View rootView = inflater.inflate(R.layout.fragment_main, container, false); 36 | return rootView; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /apps/app/src/main/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 16 | 17 | 18 | 19 | 26 | 27 | 32 | 33 |