Searched defs:resolvedType (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/services/core/java/com/android/server/firewall/
H A DAndFilter.java29 int callerUid, int callerPid, String resolvedType, int receivingUid) {
32 resolvedType, receivingUid)) {
28 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DFilter.java31 * @param resolvedType The resolved mime type of the intent
35 int callerUid, int callerPid, String resolvedType, int receivingUid);
34 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DNotFilter.java36 int callerUid, int callerPid, String resolvedType, int receivingUid) {
37 return !mChild.matches(ifw, resolvedComponent, intent, callerUid, callerPid, resolvedType,
35 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DOrFilter.java29 int callerUid, int callerPid, String resolvedType, int receivingUid) {
32 resolvedType, receivingUid)) {
28 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DCategoryFilter.java38 int callerUid, int callerPid, String resolvedType, int receivingUid) {
37 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DSenderPackageFilter.java42 int callerUid, int callerPid, String resolvedType, int receivingUid) {
41 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DSenderPermissionFilter.java37 int callerUid, int callerPid, String resolvedType, int receivingUid) {
36 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DPortFilter.java45 int callerUid, int callerPid, String resolvedType, int receivingUid) {
44 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DStringFilter.java122 int callerUid, int callerPid, String resolvedType, int receivingUid) {
123 String value = mValueProvider.getValue(resolvedComponent, intent, resolvedType);
138 String resolvedType);
233 String resolvedType) {
244 String resolvedType) {
255 String resolvedType) {
266 String resolvedType) {
274 String resolvedType) {
286 String resolvedType) {
287 return resolvedType;
121 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
137 getValue(ComponentName resolvedComponent, Intent intent, String resolvedType) argument
[all...]
H A DIntentFirewall.java128 String resolvedType, ApplicationInfo resolvedApp) {
130 callerUid, callerPid, resolvedType, resolvedApp.uid);
134 int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
136 callerPid, resolvedType, resolvedApp.uid);
140 String resolvedType, int receivingUid) {
142 callerUid, callerPid, resolvedType, receivingUid);
146 int intentType, Intent intent, int callerUid, int callerPid, String resolvedType,
154 candidateRules = resolver.queryIntent(intent, resolvedType, false, 0);
164 if (rule.matches(this, resolvedComponent, intent, callerUid, callerPid, resolvedType,
178 logIntent(intentType, intent, callerUid, resolvedType);
127 checkStartActivity(Intent intent, int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) argument
133 checkService(ComponentName resolvedService, Intent intent, int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) argument
139 checkBroadcast(Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
145 checkIntent(FirewallIntentResolver resolver, ComponentName resolvedComponent, int intentType, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
184 logIntent(int intentType, Intent intent, int callerUid, String resolvedType) argument
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DCallable.java37 public final ModelClass resolvedType; field in class:Callable
41 public Callable(Type type, String name, ModelClass resolvedType, int flags) { argument
44 this.resolvedType = resolvedType;
49 return resolvedType.toJavaCode();
73 ", resolvedType=" + resolvedType +
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java201 public int send(int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, argument
203 return sendInner(code, intent, resolvedType, finishedReceiver,
207 int sendInner(int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, argument
234 resolvedType = key.requestResolvedType;
237 resolvedType = key.requestResolvedType;
243 resolvedType = key.requestResolvedType;
273 allResolvedTypes[allResolvedTypes.length-1] = resolvedType;
278 resolvedType, resultTo, resultWho, requestCode, 0,
296 finalIntent, resolvedType, finishedReceiver, code, null, null,
309 resolvedType, ke
[all...]
H A DBroadcastRecord.java55 final String resolvedType; // the resolved data type field in class:BroadcastRecord
209 resolvedType = _resolvedType;
H A DActiveServices.java306 ComponentName startServiceLocked(IApplicationThread caller, Intent service, String resolvedType, argument
310 + " type=" + resolvedType + " args=" + service.getExtras());
328 retrieveServiceLocked(service, resolvedType, callingPackage,
481 String resolvedType, int userId) {
483 + " type=" + resolvedType);
494 ServiceLookupResult r = retrieveServiceLocked(service, resolvedType, null,
512 IBinder peekServiceLocked(Intent service, String resolvedType, String callingPackage) { argument
513 ServiceLookupResult r = retrieveServiceLocked(service, resolvedType, callingPackage,
698 String resolvedType, IServiceConnection connection, int flags,
701 + " type=" + resolvedType
480 stopServiceLocked(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
697 bindServiceLocked(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags, String callingPackage, int userId) argument
1025 retrieveServiceLocked(Intent service, String resolvedType, String callingPackage, int callingPid, int callingUid, int userId, boolean createIfNeeded, boolean callingFromFg) argument
[all...]
H A DActivityRecord.java102 final String resolvedType; // as per original caller; field in class:ActivityRecord
450 resolvedType = _resolvedType;
1173 if (resolvedType != null) {
1174 out.attribute(null, ATTR_RESOLVEDTYPE, resolvedType);
1200 String resolvedType = null;
1219 resolvedType = attrValue;
1258 final ActivityInfo aInfo = stackSupervisor.resolveActivity(intent, resolvedType, 0, null,
1262 " resolvedType=" + resolvedType);
1265 launchedFromPackage, intent, resolvedType, aInf
[all...]
H A DActivityStackSupervisor.java863 ActivityInfo resolveActivity(Intent intent, String resolvedType, int startFlags, argument
870 intent, resolvedType,
910 startActivityLocked(null /* caller */, intent, null /* resolvedType */, aInfo,
926 String callingPackage, Intent intent, String resolvedType,
943 resolveActivity(intent, resolvedType, startFlags, profilerInfo, userId);
1002 new String[] { resolvedType }, PendingIntent.FLAG_CANCEL_CURRENT
1025 resolvedType = null;
1045 int res = startActivityLocked(caller, intent, resolvedType, aInfo,
1400 Intent intent, String resolvedType, ActivityInfo aInfo,
1511 intent.getComponent(), intent, resolvedType)) {
925 startActivityMayWait(IApplicationThread caller, int callingUid, String callingPackage, Intent intent, String resolvedType, IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, WaitResult outResult, Configuration config, Bundle options, boolean ignoreTargetSecurity, int userId, IActivityContainer iContainer, TaskRecord inTask) argument
1399 startActivityLocked(IApplicationThread caller, Intent intent, String resolvedType, ActivityInfo aInfo, IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor, IBinder resultTo, String resultWho, int requestCode, int callingPid, int callingUid, String callingPackage, int realCallingPid, int realCallingUid, int startFlags, Bundle options, boolean ignoreTargetSecurity, boolean componentSpecified, ActivityRecord[] outActivity, ActivityContainer container, TaskRecord inTask) argument
4341 checkEmbeddedAllowedInner(int userId, Intent intent, String resolvedType) argument
[all...]
H A DActivityManagerService.java3850 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
3852 return startActivityAsUser(caller, callingPackage, intent, resolvedType, resultTo,
3859 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
3866 resolvedType, null, null, resultTo, resultWho, requestCode, startFlags,
3872 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
3929 resolvedType, null, null, resultTo, resultWho, requestCode, startFlags, null,
3950 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
3957 mStackSupervisor.startActivityMayWait(caller, -1, callingPackage, intent, resolvedType,
3965 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
3972 resolvedType, nul
3849 startActivity(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options) argument
3858 startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
3871 startActivityAsCaller(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, boolean ignoreTargetSecurity, int userId) argument
3949 startActivityAndWait(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
3964 startActivityWithConfig(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration config, Bundle options, int userId) argument
3978 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
4010 startVoiceActivity(String callingPackage, int callingPid, int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session, IVoiceInteractor interactor, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
4189 startActivityInPackage(int uid, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Bundle options, int userId, IActivityContainer container, TaskRecord inTask) argument
15737 startService(IApplicationThread caller, Intent service, String resolvedType, String callingPackage, int userId) argument
15763 startServiceInPackage(int uid, Intent service, String resolvedType, String callingPackage, int userId) argument
15778 stopService(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
15792 peekService(Intent service, String resolvedType, String callingPackage) argument
15973 bindService(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags, String callingPackage, int userId) argument
16420 collectReceiverComponents(Intent intent, String resolvedType, int callingUid, int[] users) argument
16497 broadcastIntentLocked(ProcessRecord callerApp, String callerPackage, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String[] requiredPermissions, int appOp, Bundle options, boolean ordered, boolean sticky, int callingPid, int callingUid, int userId) argument
17001 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String[] requiredPermissions, int appOp, Bundle options, boolean serialized, boolean sticky, int userId) argument
17025 broadcastIntentInPackage(String packageName, int uid, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String requiredPermission, Bundle options, boolean serialized, boolean sticky, int userId) argument
20707 startActivity(IBinder whoThread, String callingPackage, Intent intent, String resolvedType, Bundle options) argument
[all...]
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerServiceImpl.java173 Intent intent, String resolvedType) {
187 intent, resolvedType, mActiveSession.mSession, mActiveSession.mInteractor,
172 startVoiceActivityLocked(int callingPid, int callingUid, IBinder token, Intent intent, String resolvedType) argument
H A DVoiceInteractionManagerService.java508 public int startVoiceActivity(IBinder token, Intent intent, String resolvedType) { argument
519 intent, resolvedType);
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java353 public List<R> queryIntentFromList(Intent intent, String resolvedType, argument
365 resolvedType, scheme, listCut.get(i), resultList, userId);
371 public List<R> queryIntent(Intent intent, String resolvedType, boolean defaultOnly, argument
381 TAG, "Resolving type=" + resolvedType + " scheme=" + scheme
391 if (resolvedType != null) {
392 int slashpos = resolvedType.indexOf('/');
394 final String baseType = resolvedType.substring(0, slashpos);
396 if (resolvedType.length() != slashpos+2
397 || resolvedType.charAt(slashpos+1) != '*') {
400 firstTypeCut = mTypeToFilter.get(resolvedType);
688 buildResolveList(Intent intent, FastImmutableArraySet<String> categories, boolean debug, boolean defaultOnly, String resolvedType, String scheme, F[] src, List<R> dest, int userId) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java153 String resolvedType = data.readString();
162 int result = startActivity(app, callingPackage, intent, resolvedType,
176 String resolvedType = data.readString();
186 int result = startActivityAsUser(app, callingPackage, intent, resolvedType,
200 String resolvedType = data.readString();
211 int result = startActivityAsCaller(app, callingPackage, intent, resolvedType,
226 String resolvedType = data.readString();
236 WaitResult result = startActivityAndWait(app, callingPackage, intent, resolvedType,
250 String resolvedType = data.readString();
259 int result = startActivityWithConfig(app, callingPackage, intent, resolvedType,
2631 startActivity(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options) argument
2665 startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
2700 startActivityAsCaller(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, boolean ignoreTargetSecurity, int userId) argument
2736 startActivityAndWait(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
2771 startActivityWithConfig(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration config, Bundle options, int userId) argument
2801 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
2835 startVoiceActivity(String callingPackage, int callingPid, int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session, IVoiceInteractor interactor, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
3033 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String[] requiredPermissions, int appOp, Bundle options, boolean serialized, boolean sticky, int userId) argument
3670 startService(IApplicationThread caller, Intent service, String resolvedType, String callingPackage, int userId) argument
3688 stopService(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
3740 bindService(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags, String callingPackage, int userId) argument
3818 peekService(Intent service, String resolvedType, String callingPackage) argument
[all...]
H A DIActivityManager.java68 String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
71 String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
74 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
78 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
82 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
86 IntentSender intent, Intent fillInIntent, String resolvedType,
90 Intent intent, String resolvedType, IVoiceInteractionSession session,
109 String resolvedType, IIntentReceiver resultTo, int resultCode,
164 String resolvedType, String callingPackage, int userId) throws RemoteException;
166 String resolvedType, in
67 startActivity(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options) argument
70 startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
73 startActivityAsCaller(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options, boolean ignoreTargetSecurity, int userId) argument
77 startActivityAndWait(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
81 startActivityWithConfig(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration newConfig, Bundle options, int userId) argument
85 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
89 startVoiceActivity(String callingPackage, int callingPid, int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session, IVoiceInteractor interactor, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
108 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String[] requiredPermissions, int appOp, Bundle options, boolean serialized, boolean sticky, int userId) argument
163 startService(IApplicationThread caller, Intent service, String resolvedType, String callingPackage, int userId) argument
165 stopService(IApplicationThread caller, Intent service, String resolvedType, int userId) argument
171 bindService(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags, String callingPackage, int userId) argument
182 peekService(Intent service, String resolvedType, String callingPackage) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java3028 String resolvedType) {
3039 if (a.intents.get(i).match(intent.getAction(), resolvedType, intent.getScheme(),
4187 public ResolveInfo resolveIntent(Intent intent, String resolvedType, argument
4191 List<ResolveInfo> query = queryIntentActivities(intent, resolvedType, flags, userId);
4192 return chooseBestActivity(intent, resolvedType, flags, query, userId);
4196 public void setLastChosenActivity(Intent intent, String resolvedType, int flags, argument
4201 + " resolvedType=" + resolvedType
4209 List<ResolveInfo> query = queryIntentActivities(intent, resolvedType, flags, userId);
4211 findPreferredActivity(intent, resolvedType,
3027 activitySupportsIntent(ComponentName component, Intent intent, String resolvedType) argument
4219 getLastChosenActivity(Intent intent, String resolvedType, int flags) argument
4227 chooseBestActivity(Intent intent, String resolvedType, int flags, List<ResolveInfo> query, int userId) argument
4274 findPersistentPreferredActivityLP(Intent intent, String resolvedType, int flags, List<ResolveInfo> query, boolean debug, int userId) argument
4331 findPreferredActivity(Intent intent, String resolvedType, int flags, List<ResolveInfo> query, int priority, boolean always, boolean removeMatches, boolean debug, int userId) argument
4487 canForwardTo(Intent intent, String resolvedType, int sourceUserId, int targetUserId) argument
4520 getMatchingCrossProfileIntentFilters(Intent intent, String resolvedType, int userId) argument
4530 queryIntentActivities(Intent intent, String resolvedType, int flags, int userId) argument
4624 getCrossProfileDomainPreferredLpr(Intent intent, String resolvedType, int flags, int sourceUserId, int parentUserId) argument
4894 querySkipCurrentProfileIntents( List<CrossProfileIntentFilter> matchingFilters, Intent intent, String resolvedType, int flags, int sourceUserId) argument
4916 queryCrossProfileIntents( List<CrossProfileIntentFilter> matchingFilters, Intent intent, String resolvedType, int flags, int sourceUserId) argument
4942 checkTargetCanHandle(CrossProfileIntentFilter filter, Intent intent, String resolvedType, int flags, int sourceUserId) argument
4980 queryIntentActivityOptions(ComponentName caller, Intent[] specifics, String[] specificTypes, Intent intent, String resolvedType, int flags, int userId) argument
5153 queryIntentReceivers(Intent intent, String resolvedType, int flags, int userId) argument
5190 resolveService(Intent intent, String resolvedType, int flags, int userId) argument
5204 queryIntentServices(Intent intent, String resolvedType, int flags, int userId) argument
5241 queryIntentContentProviders( Intent intent, String resolvedType, int flags, int userId) argument
8707 queryIntent(Intent intent, String resolvedType, boolean defaultOnly, int userId) argument
8714 queryIntent(Intent intent, String resolvedType, int flags, int userId) argument
8722 queryIntentForPackage(Intent intent, String resolvedType, int flags, ArrayList<PackageParser.Activity> packageActivities, int userId) argument
8936 queryIntent(Intent intent, String resolvedType, boolean defaultOnly, int userId) argument
8942 queryIntent(Intent intent, String resolvedType, int flags, int userId) argument
8950 queryIntentForPackage(Intent intent, String resolvedType, int flags, ArrayList<PackageParser.Service> packageServices, int userId) argument
9150 queryIntent(Intent intent, String resolvedType, boolean defaultOnly, int userId) argument
9156 queryIntent(Intent intent, String resolvedType, int flags, int userId) argument
9165 queryIntentForPackage(Intent intent, String resolvedType, int flags, ArrayList<PackageParser.Provider> packageProviders, int userId) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 1436 milliseconds