├── app ├── .gitignore ├── app-release.apk ├── src │ ├── main │ │ ├── ic_launcher-web.png │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── football_icon.png │ │ │ │ ├── main_menu_logo.png │ │ │ │ ├── button_shape_fc_blue.xml │ │ │ │ ├── button_shape_fc_neutral.xml │ │ │ │ ├── button_shape_fc_win.xml │ │ │ │ ├── button_shape_fc_accent.xml │ │ │ │ ├── button_shape_fc_loss.xml │ │ │ │ └── button_shape_fc.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── menu │ │ │ │ ├── menu_home.xml │ │ │ │ └── menu_main.xml │ │ │ ├── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ └── layout │ │ │ │ ├── simple_list_dialog.xml │ │ │ │ ├── team_rankings_dialog.xml │ │ │ │ ├── group_recruit.xml │ │ │ │ ├── group_player_stats.xml │ │ │ │ ├── team_history_list_item.xml │ │ │ │ ├── news_story_list_item.xml │ │ │ │ ├── team_lineup_list_item.xml │ │ │ │ ├── injury_report.xml │ │ │ │ ├── bowl_ccg_dialog.xml │ │ │ │ ├── league_history_list_item.xml │ │ │ │ ├── activity_home.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_recruiting.xml │ │ │ │ ├── child_player_stats.xml │ │ │ │ ├── game_schedule_list_item.xml │ │ │ │ ├── league_record_list_item.xml │ │ │ │ ├── team_stats_list_item.xml │ │ │ │ ├── hall_fame_list_item.xml │ │ │ │ ├── activity_tutorial.xml │ │ │ │ ├── team_rankings_list_item.xml │ │ │ │ ├── child_recruit.xml │ │ │ │ ├── team_lineup_dialog.xml │ │ │ │ ├── team_strategy_dialog.xml │ │ │ │ ├── content_recruiting.xml │ │ │ │ ├── content_home.xml │ │ │ │ ├── change_team_name_dialog.xml │ │ │ │ ├── content_main.xml │ │ │ │ ├── game_scout_dialog.xml │ │ │ │ └── game_dialog.xml │ │ ├── java │ │ │ ├── CFBsimPack │ │ │ │ ├── TeamStreak.java │ │ │ │ ├── TeamStrategy.java │ │ │ │ ├── Injury.java │ │ │ │ ├── LeagueRecords.java │ │ │ │ ├── Player.java │ │ │ │ ├── PlayerOL.java │ │ │ │ ├── PlayerCB.java │ │ │ │ ├── PlayerS.java │ │ │ │ ├── PlayerF7.java │ │ │ │ └── PlayerRB.java │ │ │ └── achijones │ │ │ │ └── footballcoach │ │ │ │ ├── NewsStoriesListArrayAdapter.java │ │ │ │ ├── TeamStatsListArrayAdapter.java │ │ │ │ ├── MockDraftListArrayAdapter.java │ │ │ │ ├── HallOfFameListArrayAdapter.java │ │ │ │ ├── SaveFilesListArrayAdapter.java │ │ │ │ ├── LeagueHistoryListArrayAdapter.java │ │ │ │ ├── LeagueRecordsListArrayAdapter.java │ │ │ │ ├── SeasonAwardsListArrayAdapter.java │ │ │ │ ├── TeamRankingsListArrayAdapter.java │ │ │ │ ├── TutorialActivity.java │ │ │ │ ├── GameScheduleListArrayAdapter.java │ │ │ │ ├── TeamHistoryListArrayAdapter.java │ │ │ │ ├── TeamLineupArrayAdapter.java │ │ │ │ ├── PlayerStatsListArrayAdapter.java │ │ │ │ ├── ExpandableListAdapterPlayerStats.java │ │ │ │ └── Home.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── achijones │ │ │ └── footballcoach │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── achijones │ │ └── footballcoach │ │ └── ApplicationTest.java ├── proguard-rules.pro └── build.gradle ├── .idea ├── vcs.xml ├── modules.xml └── runConfigurations.xml └── README.md /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonesguy14/footballcoach/HEAD/app/app-release.apk -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonesguy14/footballcoach/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/football_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonesguy14/footballcoach/HEAD/app/src/main/res/drawable/football_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/main_menu_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonesguy14/footballcoach/HEAD/app/src/main/res/drawable/main_menu_logo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonesguy14/footballcoach/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonesguy14/footballcoach/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonesguy14/footballcoach/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonesguy14/footballcoach/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonesguy14/footballcoach/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_home.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | > 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/test/java/com/example/achijones/footballcoach/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.achijones.footballcoach; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /app/src/androidTest/java/achijones/footballcoach/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package achijones.footballcoach; 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 | } -------------------------------------------------------------------------------- /app/src/main/res/layout/simple_list_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /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 D:\Android\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 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #00bb96 4 | #008066 5 | #ef6f10 6 | #cc6600 7 | #00ffcc 8 | #005ce6 9 | #1a75ff 10 | #b3ffb3 11 | #66ff66 12 | #ffb3b3 13 | #ff6666 14 | #d9d9d9 15 | #b3b3b3 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/layout/team_rankings_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | 18 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.2" 6 | 7 | defaultConfig { 8 | applicationId "achijones.footballcoach" 9 | minSdkVersion 19 10 | targetSdkVersion 23 11 | versionCode 32 12 | versionName "1.38" 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 | testCompile 'junit:junit:4.12' 25 | compile 'com.android.support:appcompat-v7:23.1.1' 26 | compile 'com.android.support:design:23.1.1' 27 | } 28 | -------------------------------------------------------------------------------- /app/src/main/res/layout/group_recruit.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |