mirror of
https://github.com/gilshahar7/InstantAssistant.git
synced 2025-06-27 16:46:47 +00:00
Version 1.1
Added compatibility with the lastest version of "Google Assistant" Moved this package to the Packix repo.
This commit is contained in:
14
Tweak.xm
14
Tweak.xm
@ -6,6 +6,10 @@
|
||||
@property (nonatomic, assign) OPASearchViewController *searchViewController;
|
||||
@end
|
||||
|
||||
@interface OPAZeroStateViewController
|
||||
-(void)openMicForVoiceQuery;
|
||||
@end
|
||||
|
||||
%hook OPAViewController
|
||||
-(void)viewDidLoad{
|
||||
%orig;
|
||||
@ -13,3 +17,13 @@
|
||||
[self.searchViewController didTapOnGlifView];
|
||||
}
|
||||
%end
|
||||
|
||||
|
||||
|
||||
%hook OPAZeroStateViewController
|
||||
-(void)viewDidLoad{
|
||||
%orig;
|
||||
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(openMicForVoiceQuery) name:UIApplicationDidBecomeActiveNotification object:nil];
|
||||
[self openMicForVoiceQuery];
|
||||
}
|
||||
%end
|
||||
|
Reference in New Issue
Block a user