Skip to content

Commit

Permalink
Merge pull request #9 from Caceresenzo/develop
Browse files Browse the repository at this point in the history
v1.3.1
  • Loading branch information
Caceresenzo authored Sep 24, 2021
2 parents 2c7f227 + c9cb844 commit ec4b375
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 18 deletions.
1 change: 1 addition & 0 deletions .idea/compiler.xml

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

2 changes: 1 addition & 1 deletion .idea/gradle.xml

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

2 changes: 1 addition & 1 deletion .idea/misc.xml

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

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

This file was deleted.

6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "caceresenzo.apps.iutschedule"
minSdkVersion 21
targetSdkVersion 29
versionCode 1300
versionName "1.3"
versionCode 1310
versionName "1.3.1"

testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
Expand Down Expand Up @@ -48,7 +48,7 @@ dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation "androidx.core:core-ktx:+"
implementation "androidx.core:core-ktx:1.6.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public VirtualCalendar parse() throws Exception {
try (Response response = client.newCall(new Request.Builder()
.url(SERVER_URL)
.header("Content-Type", "application/x-www-form-urlencoded")
.header("Accept", "*/*")
.post(new FormBody.Builder()
.add("action", "displayWeeksPeople")
.add("person", String.valueOf(studentId))
Expand Down
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.4.0'
ext {
kotlin_version = '1.4.0'
androidXCore = "1.6.0"
}

repositories {
google()
jcenter()
}

dependencies {
classpath "com.android.tools.build:gradle:4.0.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Expand Down

0 comments on commit ec4b375

Please # to comment.