Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Krishna Vemulavada
/
vera_2.1_app
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7cd8ff8b
authored
Sep 27, 2019
by
Simhachalam ch
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
login design
parent
2174f53d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
79 additions
and
32 deletions
app/build.gradle
app/src/main/java/com/vsoft/vera/ui/ADALActivity.java
app/src/main/res/layout/adal_main.xml
build.gradle
gradle/wrapper/gradle-wrapper.properties
app/build.gradle
View file @
7cd8ff8b
...
...
@@ -32,12 +32,12 @@ android {
}
}
compileSdkVersion
2
7
compileSdkVersion
2
8
defaultConfig
{
applicationId
"com.vsoft.vera"
minSdkVersion
21
targetSdkVersion
2
7
targetSdkVersion
2
8
versionCode
1
versionName
"0.0.1"
multiDexEnabled
true
...
...
@@ -68,26 +68,7 @@ android {
}
productFlavors
{
uofl
{
applicationId
"com.vsoft.vera.uofl"
versionCode
1
versionName
"0.0.1"
}
citrix
{
applicationId
"com.vsoft.vera.citrix"
versionCode
1
versionName
"0.0.1"
}
ge
{
applicationId
"com.vsoft.vera.ge"
versionCode
1
versionName
"0.0.1"
}
arrow
{
applicationId
"com.vsoft.vera.arrow"
versionCode
1
versionName
"0.0.1"
}
vportal
{
applicationId
"com.vsoft.vera.vportal"
versionCode
1
...
...
@@ -98,8 +79,14 @@ android {
dependencies
{
implementation
fileTree
(
include:
[
'*.jar'
],
dir:
'libs'
)
implementation
'com.android.support:design:27.1.1'
implementation
'com.android.support:support-annotations:27.1.1'
implementation
'com.android.volley:volley:1.1.+'
implementation
(
'com.microsoft.aad:adal:1.14.+'
)
{
exclude
group:
'com.android.support'
}
implementation
'com.android.support:design:28.0.0'
implementation
'com.android.support:support-annotations:28.0.0'
implementation
'android.arch.lifecycle:extensions:1.1.1'
testImplementation
'junit:junit:4.12'
implementation
'com.squareup.retrofit2:retrofit:2.3.0'
...
...
@@ -117,12 +104,12 @@ dependencies {
}
implementation
'com.squareup.picasso:picasso:2.5.2'
implementation
'com.github.nkzawa:socket.io-client:0.3.0'
implementation
'com.android.support:appcompat-v7:2
7.1.1
'
implementation
'com.android.support:cardview-v7:2
7.1.1
'
implementation
'com.android.support:recyclerview-v7:2
7.1.1
'
implementation
'com.android.support:animated-vector-drawable:2
7.1.1
'
implementation
'com.android.support:support-media-compat:2
7.1.1
'
implementation
'com.android.support:support-v4:2
7.1.1
'
implementation
'com.android.support:appcompat-v7:2
8.0.0
'
implementation
'com.android.support:cardview-v7:2
8.0.0
'
implementation
'com.android.support:recyclerview-v7:2
8.0.0
'
implementation
'com.android.support:animated-vector-drawable:2
8.0.0
'
implementation
'com.android.support:support-media-compat:2
8.0.0
'
implementation
'com.android.support:support-v4:2
8.0.0
'
implementation
(
'com.google.firebase:firebase-messaging:17.6.0'
)
{
exclude
group:
'com.google.firebase'
,
module:
'firebase-iid'
}
...
...
app/src/main/java/com/vsoft/vera/ui/ADALActivity.java
0 → 100755
View file @
7cd8ff8b
This diff is collapsed.
Click to expand it.
app/src/main/res/layout/adal_main.xml
0 → 100755
View file @
7cd8ff8b
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
android:id=
"@+id/activity_main"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:background=
"#FFFFFF"
android:orientation=
"vertical"
tools:context=
"com.vsoft.vera.ui.ADALActivity"
>
<TextView
android:text=
"WelCome"
android:textColor=
"#3f3f3f"
android:textSize=
"50px"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"10dp"
android:layout_marginTop=
"15dp"
android:id=
"@+id/welcome"
android:visibility=
"invisible"
/>
<Button
android:id=
"@+id/callGraph"
android:text=
"Call Graph"
android:textColor=
"#FFFFFF"
android:background=
"#00a1f1"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"200dp"
android:textAllCaps=
"false"
/>
<TextView
android:text=
"Loading"
android:textColor=
"#3f3f3f"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"5dp"
android:id=
"@+id/graphData"
android:visibility=
"invisible"
/>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"0dip"
android:layout_weight=
"1"
android:gravity=
"center|bottom"
android:orientation=
"vertical"
>
<Button
android:text=
"Signoutt"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"15dp"
android:textColor=
"#FFFFFF"
android:background=
"#00a1f1"
android:textAllCaps=
"false"
android:id=
"@+id/clearCache"
android:visibility=
"invisible"
/>
</LinearLayout>
</LinearLayout>
\ No newline at end of file
build.gradle
View file @
7cd8ff8b
...
...
@@ -8,7 +8,7 @@ buildscript {
maven
{
url
"https://jitpack.io"
}
}
dependencies
{
classpath
'com.android.tools.build:gradle:3.
4.2
'
classpath
'com.android.tools.build:gradle:3.
5.0
'
classpath
'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath
'com.google.gms:google-services:4.2.0'
...
...
gradle/wrapper/gradle-wrapper.properties
View file @
7cd8ff8b
...
...
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-5.
1
.1-all.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-5.
4
.1-all.zip
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment