Skip to content

Commit

Permalink
Supporting multiple image upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedfgad committed Aug 26, 2019
1 parent 480a876 commit aba200a
Show file tree
Hide file tree
Showing 35 changed files with 503 additions and 233 deletions.
125 changes: 125 additions & 0 deletions Part 1/AndroidClient/.idea/assetWizardSettings.xml

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

Binary file modified Part 1/AndroidClient/.idea/caches/build_file_checksums.ser
Binary file not shown.
Binary file modified Part 1/AndroidClient/.idea/caches/gradle_models.ser
Binary file not shown.
116 changes: 116 additions & 0 deletions Part 1/AndroidClient/.idea/codeStyles/Project.xml

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

2 changes: 1 addition & 1 deletion Part 1/AndroidClient/.idea/modules.xml

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

6 changes: 6 additions & 0 deletions Part 1/AndroidClient/.idea/vcs.xml

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

11 changes: 6 additions & 5 deletions Part 1/AndroidClient/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 26
compileSdkVersion 28
defaultConfig {
applicationId "com.example.dell.androidflask"
applicationId "fritz.heartbeat.androidflask.imageupload"
minSdkVersion 19
targetSdkVersion 26
targetSdkVersion 28
versionCode 1
versionName "1.0"
versionName "0.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand All @@ -19,11 +19,12 @@ android {
}

dependencies {
implementation 'com.android.support:support-annotations:28.0.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.squareup.okhttp3:okhttp:3.4.1'
}
}
Binary file added Part 1/AndroidClient/app/release/app-release.apk
Binary file not shown.
1 change: 1 addition & 0 deletions Part 1/AndroidClient/app/release/output.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"0.1","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.dell.androidflask;
package fritz.example.dell.androidflask;

import android.content.Context;
import android.support.test.InstrumentationRegistry;
Expand Down
4 changes: 2 additions & 2 deletions Part 1/AndroidClient/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.dell.androidflask">
package="fritz.heartbeat.androidflask.imageupload">

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Expand All @@ -12,7 +12,7 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<activity android:name="fritz.heartbeat.androidflask.imageupload.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit aba200a

Please sign in to comment.