Skip to content

Commit

Permalink
Merge branch 'develop' into 'master'
Browse files Browse the repository at this point in the history
Develop

See merge request namibsun/android/bundesliga-tippspiel-android!2
  • Loading branch information
namboy94 committed Oct 5, 2018
2 parents f3064f1 + a0475f0 commit d0d9bc8
Show file tree
Hide file tree
Showing 51 changed files with 2,791 additions and 1,288 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
V 1.2.0:
- No longer requires users to log in each time
- Uses new internal model for API calls
V 1.1.0:
- Now uses V2 of the API
V 1.0.5:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG-de-DE
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
V 1.2.0:
- Nutzer müssen nicht länger jedes Mal sich neu einloggen
- Verwendet neues internes Model zur API Nutzung
V 1.1.0:
- Verwendet nun V2 der API
V 1.0.5:
Expand Down
7 changes: 5 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,19 @@ android {
packagingOptions {
exclude 'META-INF/*'
}
testOptions {
unitTests.returnDefaultValues = true
}
}

dependencies {
api "com.android.support:appcompat-v7:27.1.1"
api "com.android.support:support-v4:27.1.1"
api "com.android.support:cardview-v7:27.1.1"
api "org.jetbrains.anko:anko-commons:0.10.5"
api 'com.google.code.gson:gson:2.8.5'
api "com.google.code.gson:gson:2.8.5"
api "com.squareup.okhttp3:okhttp:3.10.0"
testImplementation 'org.json:json:20180130'
testImplementation "org.json:json:20180130"
// api project(':lib')
}

Expand Down
8 changes: 4 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ along with bundesliga-tippspiel-android. If not, see <http://www.gnu.org/licens
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".LoginActivity"
android:name=".activities.LoginActivity"
android:configChanges="orientation|screenSize"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".BetActivity" android:configChanges="orientation|screenSize"/>
<activity android:name=".LeaderboardActivity" android:configChanges="orientation|screenSize"/>
<activity android:name=".SingleMatchActivity" android:configChanges="orientation|screenSize"/>
<activity android:name=".activities.BetActivity" android:configChanges="orientation|screenSize"/>
<activity android:name=".activities.LeaderboardActivity" android:configChanges="orientation|screenSize"/>
<activity android:name=".activities.MatchActivity" android:configChanges="orientation|screenSize"/>

</application>

Expand Down
172 changes: 0 additions & 172 deletions app/src/main/kotlin/net/namibsun/hktipp/LoginActivity.kt

This file was deleted.

Loading

0 comments on commit d0d9bc8

Please sign in to comment.