add references jars for file storages
This commit is contained in:
@@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="com.microsoft.aad.adal"
|
||||||
|
android:versionCode="1"
|
||||||
|
android:versionName="0.1.1" >
|
||||||
|
|
||||||
|
<uses-sdk
|
||||||
|
android:minSdkVersion="14"
|
||||||
|
android:targetSdkVersion="21" />
|
||||||
|
|
||||||
|
<application>
|
||||||
|
<activity android:name="com.microsoft.aad.adal.AuthenticationActivity" >
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<receiver
|
||||||
|
android:name = "com.microsoft.aad.adal.ApplicationReceiver">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.PACKAGE_ADDED"/>
|
||||||
|
<action android:name="android.intent.action.PACKAGE_INSTALL"/>
|
||||||
|
<data android:scheme="package"/>
|
||||||
|
</intent-filter>
|
||||||
|
</receiver>
|
||||||
|
</application>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</manifest>
|
21
src/JavaFileStorageBindings/Jars/adal-1.1.19/R.txt
Normal file
21
src/JavaFileStorageBindings/Jars/adal-1.1.19/R.txt
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
int dimen activity_horizontal_margin 0x7f030000
|
||||||
|
int dimen activity_vertical_margin 0x7f030001
|
||||||
|
int id LinearLayout1 0x7f060004
|
||||||
|
int id com_microsoft_aad_adal_editDummyText 0x7f060002
|
||||||
|
int id com_microsoft_aad_adal_progressBar 0x7f060003
|
||||||
|
int id com_microsoft_aad_adal_webView1 0x7f060001
|
||||||
|
int id editPassword 0x7f060006
|
||||||
|
int id editUserName 0x7f060005
|
||||||
|
int id webView1 0x7f060000
|
||||||
|
int layout activity_authentication 0x7f020000
|
||||||
|
int layout dialog_authentication 0x7f020001
|
||||||
|
int layout http_auth_dialog 0x7f020002
|
||||||
|
int string app_loading 0x7f040000
|
||||||
|
int string broker_processing 0x7f040001
|
||||||
|
int string http_auth_dialog_cancel 0x7f040006
|
||||||
|
int string http_auth_dialog_login 0x7f040005
|
||||||
|
int string http_auth_dialog_password 0x7f040003
|
||||||
|
int string http_auth_dialog_title 0x7f040004
|
||||||
|
int string http_auth_dialog_username 0x7f040002
|
||||||
|
int style AppBaseTheme 0x7f050000
|
||||||
|
int style AppTheme 0x7f050001
|
BIN
src/JavaFileStorageBindings/Jars/adal-1.1.19/classes-adal.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/adal-1.1.19/classes-adal.jar
Normal file
Binary file not shown.
@@ -0,0 +1,17 @@
|
|||||||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
|
||||||
|
tools:context=".AuthenticationActivity" >
|
||||||
|
|
||||||
|
<WebView
|
||||||
|
android:id="@+id/webView1"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:layout_alignParentLeft="true"
|
||||||
|
android:layout_alignParentStart="true"
|
||||||
|
android:layout_alignParentTop="true" />
|
||||||
|
|
||||||
|
|
||||||
|
</RelativeLayout>
|
@@ -0,0 +1,40 @@
|
|||||||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent" >
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<WebView
|
||||||
|
android:id="@+id/com_microsoft_aad_adal_webView1"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:paddingBottom="0dp"
|
||||||
|
android:paddingLeft="0dp"
|
||||||
|
android:paddingRight="0dp"
|
||||||
|
android:paddingTop="0dp" />
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/com_microsoft_aad_adal_editDummyText"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_alignBottom="@+id/com_microsoft_aad_adal_webView1"
|
||||||
|
android:layout_alignLeft="@+id/com_microsoft_aad_adal_webView1"
|
||||||
|
android:layout_alignStart="@+id/com_microsoft_aad_adal_webView1"
|
||||||
|
android:layout_marginBottom="124dp"
|
||||||
|
android:layout_marginLeft="86dp"
|
||||||
|
android:layout_marginStart="86dp"
|
||||||
|
android:ems="10"
|
||||||
|
android:inputType="textEmailAddress"
|
||||||
|
android:visibility="gone" >
|
||||||
|
</EditText>
|
||||||
|
|
||||||
|
<ProgressBar
|
||||||
|
android:id="@+id/com_microsoft_aad_adal_progressBar"
|
||||||
|
style="?android:attr/progressBarStyleLarge"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_centerHorizontal="true"
|
||||||
|
android:layout_centerVertical="true" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
@@ -0,0 +1,31 @@
|
|||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:id="@+id/LinearLayout1"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:paddingLeft="10dp"
|
||||||
|
android:paddingRight="10dp" >
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/editUserName"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:ems="10"
|
||||||
|
android:hint="@string/http_auth_dialog_username"
|
||||||
|
android:paddingTop="10dp" >
|
||||||
|
|
||||||
|
<requestFocus />
|
||||||
|
</EditText>
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/editPassword"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:ems="10"
|
||||||
|
android:hint="@string/http_auth_dialog_password"
|
||||||
|
android:inputType="textPassword"
|
||||||
|
android:paddingTop="10dp"
|
||||||
|
android:paddingBottom="20dp" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
@@ -0,0 +1,8 @@
|
|||||||
|
<resources>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Customize dimensions originally defined in res/values/dimens.xml (such as
|
||||||
|
screen margins) for sw600dp devices (e.g. 7" tablets) here.
|
||||||
|
-->
|
||||||
|
|
||||||
|
</resources>
|
@@ -0,0 +1,9 @@
|
|||||||
|
<resources>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Customize dimensions originally defined in res/values/dimens.xml (such as
|
||||||
|
screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here.
|
||||||
|
-->
|
||||||
|
<dimen name="activity_horizontal_margin">128dp</dimen>
|
||||||
|
|
||||||
|
</resources>
|
@@ -0,0 +1,11 @@
|
|||||||
|
<resources>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Base application theme for API 11+. This theme completely replaces
|
||||||
|
AppBaseTheme from res/values/styles.xml on API 11+ devices.
|
||||||
|
-->
|
||||||
|
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
|
||||||
|
<!-- API 11 theme customizations can go here. -->
|
||||||
|
</style>
|
||||||
|
|
||||||
|
</resources>
|
@@ -0,0 +1,12 @@
|
|||||||
|
<resources>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Base application theme for API 14+. This theme completely replaces
|
||||||
|
AppBaseTheme from BOTH res/values/styles.xml and
|
||||||
|
res/values-v11/styles.xml on API 14+ devices.
|
||||||
|
-->
|
||||||
|
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
|
||||||
|
<!-- API 14 theme customizations can go here. -->
|
||||||
|
</style>
|
||||||
|
|
||||||
|
</resources>
|
@@ -0,0 +1,7 @@
|
|||||||
|
<resources>
|
||||||
|
|
||||||
|
<!-- Default screen margins, per the Android Design guidelines. -->
|
||||||
|
<dimen name="activity_horizontal_margin">16dp</dimen>
|
||||||
|
<dimen name="activity_vertical_margin">16dp</dimen>
|
||||||
|
|
||||||
|
</resources>
|
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
|
||||||
|
|
||||||
|
<string name="app_loading">Loading…</string>
|
||||||
|
<string name="broker_processing">Broker is processing</string>
|
||||||
|
<string name="http_auth_dialog_username">Username</string>
|
||||||
|
<string name="http_auth_dialog_password">Password</string>
|
||||||
|
<string name="http_auth_dialog_title">Enter your credentials</string>
|
||||||
|
<string name="http_auth_dialog_login">Login</string>
|
||||||
|
<string name="http_auth_dialog_cancel">Cancel</string>
|
||||||
|
|
||||||
|
</resources>
|
@@ -0,0 +1,20 @@
|
|||||||
|
<resources>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Base application theme, dependent on API level. This theme is replaced
|
||||||
|
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
|
||||||
|
-->
|
||||||
|
<style name="AppBaseTheme" parent="android:Theme.Light">
|
||||||
|
<!--
|
||||||
|
Theme customizations available in newer API levels can go in
|
||||||
|
res/values-vXX/styles.xml, while customizations related to
|
||||||
|
backward-compatibility can go here.
|
||||||
|
-->
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<!-- Application theme. -->
|
||||||
|
<style name="AppTheme" parent="AppBaseTheme">
|
||||||
|
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
|
||||||
|
</style>
|
||||||
|
|
||||||
|
</resources>
|
BIN
src/JavaFileStorageBindings/Jars/dropbox-core-sdk-2.1.1.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/dropbox-core-sdk-2.1.1.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/JavaFileStorageBindings/Jars/gdrive/httpclient-4.0.3.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/gdrive/httpclient-4.0.3.jar
Normal file
Binary file not shown.
BIN
src/JavaFileStorageBindings/Jars/gdrive/httpcore-4.0.1.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/gdrive/httpcore-4.0.1.jar
Normal file
Binary file not shown.
BIN
src/JavaFileStorageBindings/Jars/gdrive/httpmime-4.0.3.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/gdrive/httpmime-4.0.3.jar
Normal file
Binary file not shown.
BIN
src/JavaFileStorageBindings/Jars/gdrive/json_simple-1.1.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/gdrive/json_simple-1.1.jar
Normal file
Binary file not shown.
BIN
src/JavaFileStorageBindings/Jars/gdrive/jsr305-1.3.9.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/gdrive/jsr305-1.3.9.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/JavaFileStorageBindings/Jars/gson-2.3.1.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/gson-2.3.1.jar
Normal file
Binary file not shown.
BIN
src/JavaFileStorageBindings/Jars/jackson-core-2.7.4.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/jackson-core-2.7.4.jar
Normal file
Binary file not shown.
BIN
src/JavaFileStorageBindings/Jars/msa-auth-0.8.6.aar
Normal file
BIN
src/JavaFileStorageBindings/Jars/msa-auth-0.8.6.aar
Normal file
Binary file not shown.
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="com.microsoft.services.msa"
|
||||||
|
android:versionCode="1"
|
||||||
|
android:versionName="1.0" >
|
||||||
|
|
||||||
|
<uses-sdk
|
||||||
|
android:minSdkVersion="14"
|
||||||
|
android:targetSdkVersion="22" />
|
||||||
|
|
||||||
|
<uses-permission android:name="com.sony.mobile.permission.SYSTEM_UI_VISIBILITY_EXTENSION" />
|
||||||
|
|
||||||
|
</manifest>
|
1
src/JavaFileStorageBindings/Jars/msa-auth-0.8.6/R.txt
Normal file
1
src/JavaFileStorageBindings/Jars/msa-auth-0.8.6/R.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
int string app_name 0x7f020000
|
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="com.microsoft.services.msa"
|
||||||
|
android:versionCode="1"
|
||||||
|
android:versionName="1.0" >
|
||||||
|
|
||||||
|
<uses-sdk
|
||||||
|
android:minSdkVersion="14"
|
||||||
|
android:targetSdkVersion="22" />
|
||||||
|
|
||||||
|
<uses-permission android:name="com.sony.mobile.permission.SYSTEM_UI_VISIBILITY_EXTENSION" />
|
||||||
|
|
||||||
|
</manifest>
|
Binary file not shown.
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<!-- From: file:/C:/Users/pnied/Documents/git/msa-auth-for-android/src/main/res/values/strings.xml -->
|
||||||
|
<eat-comment/>
|
||||||
|
<string name="app_name">msa-auth</string>
|
||||||
|
</resources>
|
BIN
src/JavaFileStorageBindings/Jars/okhttp-3.4.1.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/okhttp-3.4.1.jar
Normal file
Binary file not shown.
BIN
src/JavaFileStorageBindings/Jars/okhttp-digest-1.7.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/okhttp-digest-1.7.jar
Normal file
Binary file not shown.
BIN
src/JavaFileStorageBindings/Jars/okio-1.9.0.jar
Normal file
BIN
src/JavaFileStorageBindings/Jars/okio-1.9.0.jar
Normal file
Binary file not shown.
BIN
src/JavaFileStorageBindings/Jars/onedrive-sdk-android-1.2.2.aar
Normal file
BIN
src/JavaFileStorageBindings/Jars/onedrive-sdk-android-1.2.2.aar
Normal file
Binary file not shown.
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="com.microsoft.onedrivesdk"
|
||||||
|
android:versionCode="10202"
|
||||||
|
android:versionName="1.2.2" >
|
||||||
|
|
||||||
|
<uses-sdk
|
||||||
|
android:minSdkVersion="15"
|
||||||
|
android:targetSdkVersion="23" />
|
||||||
|
|
||||||
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
||||||
|
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
|
||||||
|
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
||||||
|
|
||||||
|
</manifest>
|
@@ -0,0 +1,22 @@
|
|||||||
|
int dimen activity_horizontal_margin 0x7f030000
|
||||||
|
int dimen activity_vertical_margin 0x7f030001
|
||||||
|
int id LinearLayout1 0x7f060004
|
||||||
|
int id com_microsoft_aad_adal_editDummyText 0x7f060002
|
||||||
|
int id com_microsoft_aad_adal_progressBar 0x7f060003
|
||||||
|
int id com_microsoft_aad_adal_webView1 0x7f060001
|
||||||
|
int id editPassword 0x7f060006
|
||||||
|
int id editUserName 0x7f060005
|
||||||
|
int id webView1 0x7f060000
|
||||||
|
int layout activity_authentication 0x7f020000
|
||||||
|
int layout dialog_authentication 0x7f020001
|
||||||
|
int layout http_auth_dialog 0x7f020002
|
||||||
|
int string app_loading 0x7f050000
|
||||||
|
int string app_name 0x7f050001
|
||||||
|
int string broker_processing 0x7f050002
|
||||||
|
int string http_auth_dialog_cancel 0x7f050003
|
||||||
|
int string http_auth_dialog_login 0x7f050004
|
||||||
|
int string http_auth_dialog_password 0x7f050005
|
||||||
|
int string http_auth_dialog_title 0x7f050006
|
||||||
|
int string http_auth_dialog_username 0x7f050007
|
||||||
|
int style AppBaseTheme 0x7f040000
|
||||||
|
int style AppTheme 0x7f040001
|
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="com.microsoft.onedrivesdk"
|
||||||
|
android:versionCode="10202"
|
||||||
|
android:versionName="1.2.2" >
|
||||||
|
|
||||||
|
<uses-sdk
|
||||||
|
android:minSdkVersion="15"
|
||||||
|
android:targetSdkVersion="23" />
|
||||||
|
|
||||||
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
||||||
|
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
|
||||||
|
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
||||||
|
|
||||||
|
</manifest>
|
Binary file not shown.
Reference in New Issue
Block a user