mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-09 08:22:17 +00:00
3bd4038089
* [IOS Only] react-native 0.63 to 0.67 * [Android Only] react-native 0.63 to 0.67 * bring back all the jenkinsfiles * make auto-complete prop for text-input compatible * [IOS Only] react-native 0.63 to 0.67 * [Android Only] react-native 0.63 to 0.67 * bring back all the jenkinsfiles * nix: drop unnecessary set -x from status-go build Signed-off-by: Jakub Sokołowski <jakub@status.im> * add explicity implementation line for soloader And add deleteDebugFilesForVariant fix for libhermes. Signed-off-by: Jakub Sokołowski <jakub@status.im> * use fast-image for link previews * fix extra line in message composer on android This elevation prop is un-necessary and causes an extra line to appear which looks like a border but its actually a shadow. * don't use `fast-image` for url preview favicon * fix audio record button interfering cancel android This fix was not needed in react-native 0.63.4 but is needed after we upgraded to 0.67.5 * get rid of unused platform import --------- Co-authored-by: Jakub Sokołowski <jakub@status.im>
20 lines
515 B
Objective-C
20 lines
515 B
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|