fix(android): content uri handling improvements (#9936)

This commit is contained in:
Osei Fortune
2022-06-19 13:46:50 -04:00
committed by Nathan Walker
parent 4db4e4af27
commit 9fcd440690
5 changed files with 16 additions and 16 deletions

View File

@ -4,20 +4,6 @@
<dict> <dict>
<key>AvailableLibraries</key> <key>AvailableLibraries</key>
<array> <array>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>TNSWidgets.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
</dict>
<dict> <dict>
<key>DebugSymbolsPath</key> <key>DebugSymbolsPath</key>
<string>dSYMs</string> <string>dSYMs</string>
@ -35,6 +21,20 @@
<key>SupportedPlatformVariant</key> <key>SupportedPlatformVariant</key>
<string>maccatalyst</string> <string>maccatalyst</string>
</dict> </dict>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>TNSWidgets.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
</dict>
<dict> <dict>
<key>DebugSymbolsPath</key> <key>DebugSymbolsPath</key>
<string>dSYMs</string> <string>dSYMs</string>

View File

@ -370,7 +370,7 @@ export class Page extends PageBase {
this._ios = null; this._ios = null;
super.disposeNativeView(); super.disposeNativeView();
} }
// @ts-ignore // @ts-ignore
get ios(): UIViewController { get ios(): UIViewController {
return this._ios; return this._ios;

View File

@ -4,4 +4,4 @@ import { EditableTextBase } from '../editable-text-base';
export class TextViewBase extends EditableTextBase implements TextViewDefinition { export class TextViewBase extends EditableTextBase implements TextViewDefinition {
public static returnPressEvent = 'returnPress'; public static returnPressEvent = 'returnPress';
public maxLines: number; public maxLines: number;
} }