This repository was archived by the owner on Nov 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +0
-48
lines changed
app/src/main/java/com/microsoft/graph/connect/util Expand file tree Collapse file tree 2 files changed +0
-48
lines changed Original file line number Diff line number Diff line change 11package com .microsoft .graph .connect .util ;
22
3- import java .util .HashMap ;
4-
53public interface IManifestReader {
64 String getApplicationMetadataValueString (String key );
7- int getApplicationMetadataValueInt (String key );
8- boolean getApplicationMetadataValueBoolean (String key );
9- int getApplicationMetadataValueColor (String key );
10- float getApplicationMetadataValueFloat (String key );
11- String getIntentFilterAction (String activityName );
12- String [] getIntentFilterCategories (String activityName );
13- HashMap <String , String > getIntentFilterData (String activityName );
14-
155}
166
Original file line number Diff line number Diff line change 77
88import com .microsoft .graph .connect .Connect ;
99
10- import java .util .HashMap ;
1110
1211/*
1312Contains methods that access the application manifest
@@ -36,42 +35,5 @@ public String getApplicationMetadataValueString(String key) {
3635 }
3736 return returnValue ;
3837 }
39-
40- @ Override
41- public int getApplicationMetadataValueInt (String key ) {
42- return 0 ;
43- }
44-
45- @ Override
46- public boolean getApplicationMetadataValueBoolean (String key ) {
47- return false ;
48- }
49-
50- @ Override
51- public int getApplicationMetadataValueColor (String key ) {
52- return 0 ;
53- }
54-
55- @ Override
56- public float getApplicationMetadataValueFloat (String key ) {
57- return 0 ;
58- }
59-
60- @ Override
61- public String getIntentFilterAction (String activityName ) {
62- return null ;
63- }
64-
65- @ Override
66- public String [] getIntentFilterCategories (String activityName ) {
67- return new String [0 ];
68- }
69-
70- @ Override
71- public HashMap <String , String > getIntentFilterData (String activityName ) {
72- return null ;
73- }
74-
75-
7638}
7739
You can’t perform that action at this time.
0 commit comments