mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
fix(android): content uri handling improvements (#9936)
This commit is contained in:

committed by
Nathan Walker

parent
4db4e4af27
commit
9fcd440690
@ -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>
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -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;
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user