diff --git a/.cargo/config.toml b/.cargo/config.toml
index 2a74c63a7..a3496cb9b 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -2,4 +2,7 @@
rustflags = ["-Ctarget-feature=+crt-static"]
[target.aarch64-unknown-linux-gnu]
-linker = "aarch64-linux-gnu-gcc"
\ No newline at end of file
+linker = "aarch64-linux-gnu-gcc"
+
+[target.'cfg(target_os="android")']
+rustflags = ["-C", "link-args=-Wl,-z,max-page-size=16384"]
\ No newline at end of file
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 388f63c30..cd2920b04 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -17,7 +17,7 @@ on:
jobs:
setup_config:
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
steps:
- name: Setup config artifact
run: |
@@ -50,7 +50,7 @@ jobs:
native_build_macos:
needs: [rust_code_format, setup_config]
- runs-on: "macos-12"
+ runs-on: "macos-15"
steps:
- uses: actions/checkout@v4
with:
@@ -60,7 +60,7 @@ jobs:
native_build_ios:
needs: [rust_code_format, setup_config]
- runs-on: "macos-12"
+ runs-on: "macos-15"
steps:
- uses: actions/checkout@v4
with:
@@ -70,7 +70,7 @@ jobs:
native_build_windows:
needs: [rust_code_format, setup_config]
- runs-on: "windows-latest"
+ runs-on: "windows-2022"
steps:
- uses: actions/checkout@v4
with:
@@ -79,19 +79,9 @@ jobs:
- uses: ./.github/workflows/native/native-build-windows
#### NUGET BUILD ####
- nugets_linux:
- needs: [native_build_linux , csharp_code_format, setup_config]
- runs-on: "ubuntu-latest"
- steps:
- - uses: actions/checkout@v4
- with:
- lfs: true
- - run: git lfs pull
- - uses: ./.github/workflows/nugets/nugets-linux
-
- nugets_windows:
- needs: [native_build_linux, native_build_macos, native_build_ios, native_build_windows , csharp_code_format, setup_config] # All Natives for dotnet-core
- runs-on: "windows-latest"
+ nugets:
+ needs: [native_build_linux, native_build_macos, native_build_ios, native_build_windows , setup_config] # All Natives for dotnet-core
+ runs-on: "windows-2022"
steps:
- uses: actions/checkout@v4
with:
@@ -99,21 +89,10 @@ jobs:
- run: git lfs pull
- uses: ./.github/workflows/nugets/nugets-windows
- nugets_macos:
- needs: [native_build_macos, native_build_ios, native_build_linux, csharp_code_format, setup_config]
- runs-on: "macos-12"
- steps:
- - uses: actions/checkout@v4
- with:
- lfs: true
- - run: git lfs pull
- - uses: ./.github/workflows/nugets/nugets-macos
-
-
#### WEB ASSEMBLY BUILD ####
webassembly_build:
needs: rust_code_format
- runs-on: "ubuntu-latest"
+ runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v4
with:
@@ -124,7 +103,7 @@ jobs:
#### WEB ASSEMBLY TEST ####
webassembly_test:
needs: webassembly_build
- runs-on: "macos-12"
+ runs-on: "macos-15"
steps:
- uses: actions/checkout@v4
with:
@@ -134,8 +113,8 @@ jobs:
#### TESTS NUGETS ####
tests_nuget_windows:
- needs: [nugets_windows, setup_config]
- runs-on: "windows-latest"
+ needs: [nugets, setup_config]
+ runs-on: "windows-2022"
steps:
- uses: actions/checkout@v4
with:
@@ -144,8 +123,8 @@ jobs:
- uses: ./.github/workflows/tests/csharp/windows
tests_nuget_macos:
- needs: [nugets_macos, nugets_windows, setup_config]
- runs-on: "macos-12"
+ needs: [nugets, setup_config]
+ runs-on: "macos-15"
steps:
- uses: actions/checkout@v4
with:
@@ -154,8 +133,8 @@ jobs:
- uses: ./.github/workflows/tests/csharp/macos
tests_nuget_ios:
- needs: [nugets_macos, setup_config]
- runs-on: "macos-12"
+ needs: [nugets, setup_config]
+ runs-on: "macos-15"
steps:
- uses: actions/checkout@v4
with:
@@ -164,8 +143,8 @@ jobs:
- uses: ./.github/workflows/tests/csharp/ios
tests_nuget_linux:
- needs: [nugets_linux, nugets_windows, setup_config]
- runs-on: "ubuntu-latest"
+ needs: [nugets, setup_config]
+ runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v4
with:
@@ -175,7 +154,7 @@ jobs:
##### SWIFT TESTS #####
tests_swift:
- runs-on: "macos-14"
+ runs-on: "macos-15"
steps:
- uses: actions/checkout@v4
with:
@@ -185,7 +164,7 @@ jobs:
##### KOTLIN BUILD #####
build_kotlin:
- runs-on: "ubuntu-latest"
+ runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v4
with:
@@ -193,36 +172,26 @@ jobs:
- run: git lfs pull
- uses: ./.github/workflows/kotlin
- #tests_nuget_android:
- # needs: [nugets_macos, setup_config]
- # runs-on: "macos-14"
- # steps:
- # - uses: actions/checkout@v4
- # with:
- # lfs: true
- # - run: git lfs pull
- # - uses: ./.github/workflows/tests/csharp/android
-
- tests_ios_integration:
- needs: [tests_nuget_ios, setup_config]
- runs-on: "macos-12"
- steps:
- - uses: actions/checkout@v4
- with:
- lfs: true
- - run: git lfs pull
- - uses: ./.github/workflows/tests/csharp/integration-ios
+ tests_nuget_android:
+ needs: [nugets, setup_config]
+ runs-on: "ubuntu-22.04"
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ lfs: true
+ - run: git lfs pull
+ - uses: ./.github/workflows/tests/csharp/android
#### CODE FORMATTING ####
rust_code_format:
- runs-on: "ubuntu-latest"
+ runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/formatting/rust
csharp_code_format:
needs: setup_config
- runs-on: "windows-latest"
+ runs-on: "windows-2022"
steps:
- uses: actions/checkout@v4
with:
@@ -232,7 +201,7 @@ jobs:
#### PYTHON BUILD ####
build_python_linux:
- runs-on: "ubuntu-latest"
+ runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v4
with:
@@ -241,7 +210,7 @@ jobs:
- uses: ./.github/workflows/python/build/linux
build_python_macos:
- runs-on: "macos-12"
+ runs-on: "macos-15"
steps:
- uses: actions/checkout@v4
with:
@@ -250,7 +219,7 @@ jobs:
- uses: ./.github/workflows/python/build/macos
build_python_windows:
- runs-on: "windows-latest"
+ runs-on: "windows-2022"
steps:
- uses: actions/checkout@v4
with:
@@ -261,28 +230,28 @@ jobs:
#### PYTHON TEST ####
test_python_linux:
needs: build_python_linux
- runs-on: "ubuntu-latest"
+ runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/tests/python/linux
test_python_macos:
needs: build_python_macos
- runs-on: "macos-12"
+ runs-on: "macos-15"
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/tests/python/macos
test_python_windows:
needs: build_python_windows
- runs-on: "windows-latest"
+ runs-on: "windows-2022"
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/tests/python/windows
#### PUBLISH SOURCE ####
source_publish:
- runs-on: "ubuntu-latest"
+ runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v4
with:
@@ -291,7 +260,7 @@ jobs:
- uses: ./.github/workflows/other/source-publish
publish_sbom:
- runs-on: "ubuntu-latest"
+ runs-on: "ubuntu-22.04"
if: ${{ github.event.inputs.generate_release == 'true' }}
steps:
- uses: actions/checkout@v4
diff --git a/.github/workflows/formatting/csharp/action.yml b/.github/workflows/formatting/csharp/action.yml
index 185a2131f..8fcf4d1be 100644
--- a/.github/workflows/formatting/csharp/action.yml
+++ b/.github/workflows/formatting/csharp/action.yml
@@ -9,31 +9,9 @@ runs:
name: config.txt
path: ./wrappers/csharp
- - uses: actions/setup-python@v5
- with:
- python-version: "3.7"
-
- - name: Setting up PATH environment variable
+ - name: Run .NET format
shell: bash
+ working-directory: ./wrappers/csharp/src/
run: |
- echo "c:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\Roslyn" >> $GITHUB_PATH
-
- - name: Installing rust targets
- shell: pwsh
- run: |
- rustup target add x86_64-pc-windows-msvc
- rustup target add i686-pc-windows-msvc
- rustup target add aarch64-pc-windows-msvc
-
- - name: Building Windows
- working-directory: ./wrappers/csharp
- shell: pwsh
- run: python GeneratePackage.py -p windows
-
- - name: Add msbuild to PATH
- uses: microsoft/setup-msbuild@v2
-
- - name: Code Analysis
- working-directory: ./wrappers/csharp/tests/unit-tests/manual/dotnet-framework
- shell: pwsh
- run: msbuild dotnet-framework.sln /t:restore,clean,build /p:TreatWarningsAsErrors=True /p:RunCodeAnalysis=true
+ dotnet tool install -g dotnet-format
+ dotnet format devolutions-crypto.csproj --verify-no-changes
diff --git a/.github/workflows/kotlin/action.yml b/.github/workflows/kotlin/action.yml
index 61be311a9..d0a7e27b1 100644
--- a/.github/workflows/kotlin/action.yml
+++ b/.github/workflows/kotlin/action.yml
@@ -34,27 +34,28 @@ runs:
- name: Configure Android NDK
shell: bash
run: |
- # Install NDK 25
+ # Install NDK 27
ANDROID_ROOT="/usr/local/lib/android"
ANDROID_SDK_ROOT="${ANDROID_ROOT}/sdk"
SDKMANAGER="${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager"
- echo "y" | $SDKMANAGER "ndk;25.2.9519653"
+ echo "y" | $SDKMANAGER "ndk;27.2.12479018"
export ANDROID_NDK=$ANDROID_SDK_ROOT/ndk-bundle
- echo "[target.aarch64-linux-android]
+ echo "
+ [target.aarch64-linux-android]
ar = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android-ar\"
linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android21-clang\"
[target.armv7-linux-androideabi]
ar = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ar\"
- linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi19-clang\"
+ linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi21-clang\"
[target.i686-linux-android]
ar = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/i686-linux-android-ar\"
- linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/i686-linux-android19-clang\"
+ linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/i686-linux-android21-clang\"
[target.x86_64-linux-android]
ar = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/x86_64-linux-android-ar\"
- linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/x86_64-linux-android21-clang\"" >> ./.cargo/config
+ linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/x86_64-linux-android21-clang\"" >> ./.cargo/config.toml
- name: Build
working-directory: ./wrappers/kotlin
@@ -63,7 +64,7 @@ runs:
export ANDROID_ROOT="/usr/local/lib/android"
export ANDROID_SDK_ROOT="${ANDROID_ROOT}/sdk"
export ANDROID_NDK=$ANDROID_SDK_ROOT/ndk-bundle
- ln -sfn $ANDROID_SDK_ROOT/ndk/25.2.9519653 $ANDROID_NDK
+ ln -sfn $ANDROID_SDK_ROOT/ndk/27.2.12479018 $ANDROID_NDK
make release RELEASE=1
diff --git a/.github/workflows/native/native-build-ios/action.yml b/.github/workflows/native/native-build-ios/action.yml
index b4a232a91..8b21349ef 100644
--- a/.github/workflows/native/native-build-ios/action.yml
+++ b/.github/workflows/native/native-build-ios/action.yml
@@ -25,8 +25,9 @@ runs:
run: |
rustup update
- rustup target add x86_64-apple-ios
- rustup target add aarch64-apple-ios
+ rustup target add x86_64-apple-ios # iOS Simulator on Intel based mac
+ rustup target add aarch64-apple-ios-sim # iOS Simulator on Arm based mac
+ rustup target add aarch64-apple-ios # iOS & iPad
- name: Unit tests
working-directory: ./
@@ -35,16 +36,86 @@ runs:
source $HOME/.cargo/env
cargo test
- - name: Building IOS
- working-directory: ./wrappers/csharp
+ - name: Build iOS
shell: bash
run: |
- source $HOME/.cargo/env
- python3 GeneratePackage.py -p ios
- mkdir output
- mv ./ios ./output/ios
+ cargo build -p devolutions-crypto-ffi --release --target=x86_64-apple-ios
+ cargo build -p devolutions-crypto-ffi --release --target=aarch64-apple-ios-sim
+ cargo build -p devolutions-crypto-ffi --release --target=aarch64-apple-ios
+
+ - name: Set Info.plist version
+ shell: bash
+ run: |
+ VERSION=$(grep 'version' ./wrappers/csharp/config.txt | cut -d '=' -f2 | tr -d ' "')
+
+ NOW=$(date +"%H%M")
+
+ FULL_VERSION="${VERSION}.${NOW}"
+
+ sed -i "" -e "s/||VERSION||/${FULL_VERSION}/g" -e "s/||SHORT_VERSION||/${VERSION}/g" ./wrappers/csharp/nuget/iOS/Info.plist
+
+ - name: Create .framework simulator
+ shell: bash
+ run: |
+ mkdir -p ./ios/bin/simulator
+ lipo "./target/x86_64-apple-ios/release/libdevolutions_crypto_ffi.dylib" \
+ "./target/aarch64-apple-ios-sim/release/libdevolutions_crypto_ffi.dylib" \
+ -create -output "./ios/bin/simulator/libDevolutionsCrypto.dylib"
+
+ mkdir ./ios/bin/simulator/libDevolutionsCrypto.framework
+ mv ./ios/bin/simulator/libDevolutionsCrypto.dylib ./ios/bin/simulator/libDevolutionsCrypto.framework/libDevolutionsCrypto
+
+ cp ./wrappers/csharp/nuget/iOS/Info.plist ./ios/bin/simulator/libDevolutionsCrypto.framework/Info.plist
+
+ # Fixing rpath
+ echo "Fixing rpath"
+ install_name_tool -id "@rpath/libDevolutionsCrypto.framework/libDevolutionsCrypto" "./ios/bin/simulator/libDevolutionsCrypto.framework/libDevolutionsCrypto"
+
+
+ - name: Create .framework
+ shell: bash
+ run: |
+ mkdir -p ./ios/bin/ios/libDevolutionsCrypto.framework
+ lipo -create ./target/aarch64-apple-ios/release/libdevolutions_crypto_ffi.dylib -output ./ios/bin/ios/libDevolutionsCrypto.framework/libDevolutionsCrypto
+
+ cp ./wrappers/csharp/nuget/iOS/Info.plist ./ios/bin/ios/libDevolutionsCrypto.framework/Info.plist
+
+ # Fixing rpath
+ echo "Fixing rpath"
+ install_name_tool -id "@rpath/libDevolutionsCrypto.framework/libDevolutionsCrypto" "./ios/bin/ios/libDevolutionsCrypto.framework/libDevolutionsCrypto"
+
+ - name: Combine Frameworks to XCFrameworks
+ shell: bash
+ run: |
+ xcodebuild -create-xcframework \
+ -framework "./ios/bin/ios/libDevolutionsCrypto.framework" \
+ -framework "./ios/bin/simulator/libDevolutionsCrypto.framework" \
+ -output ./output/ios/libDevolutionsCrypto.xcframework
+
+ mkdir -p ./wrappers/csharp/
+ cp -R ./output/. ./wrappers/csharp/
+
+ - name: Build C#
+ shell: bash
+ working-directory: ./wrappers/csharp/src
+ run: |
+ VERSION_MANAGED=$(grep 'version' ../config.txt | cut -d '=' -f2 | tr -d ' "')
+ VERSION_NATIVE=$(grep 'package.version = "' ../../../Cargo.toml | cut -d '"' -f2)
+
+ sed -i "" -e "s/||MANAGED_VERSION||/${VERSION_MANAGED}/g" -e "s/||NATIVE_VERSION||/${VERSION_NATIVE}/g" ./Native.cs
+
+ dotnet build -p:DefineConstants=IOS -p:Version="$VERSION_MANAGED" --configuration Release --output ../ios/bin
+
+ - name: Fix dir structure
+ shell: bash
+ working-directory: ./wrappers/csharp/
+ run: |
+ mkdir tmp
+ mv ./ios ./tmp/ios
+ mkdir -p ./ios/ios
+ cp -R ./tmp/ios/. ./ios/ios
- uses: actions/upload-artifact@v4.3.6
with:
name: native-ios
- path: wrappers/csharp/output/**
+ path: ./wrappers/csharp/ios
diff --git a/.github/workflows/native/native-build-linux/action.yml b/.github/workflows/native/native-build-linux/action.yml
index b7a6e92f5..4446b49f5 100644
--- a/.github/workflows/native/native-build-linux/action.yml
+++ b/.github/workflows/native/native-build-linux/action.yml
@@ -49,27 +49,28 @@ runs:
- name: Configure Android NDK
shell: bash
run: |
- # Install NDK 25
+ # Install NDK 27
ANDROID_ROOT="/usr/local/lib/android"
ANDROID_SDK_ROOT="${ANDROID_ROOT}/sdk"
SDKMANAGER="${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager"
- echo "y" | $SDKMANAGER "ndk;25.2.9519653"
+ echo "y" | $SDKMANAGER "ndk;27.2.12479018"
export ANDROID_NDK=$ANDROID_SDK_ROOT/ndk-bundle
- echo "[target.aarch64-linux-android]
+ echo "
+ [target.aarch64-linux-android]
ar = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android-ar\"
linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android21-clang\"
[target.armv7-linux-androideabi]
ar = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ar\"
- linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi19-clang\"
+ linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi21-clang\"
[target.i686-linux-android]
ar = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/i686-linux-android-ar\"
- linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/i686-linux-android19-clang\"
+ linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/i686-linux-android21-clang\"
[target.x86_64-linux-android]
ar = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/x86_64-linux-android-ar\"
- linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/x86_64-linux-android21-clang\"" >> ./.cargo/config
+ linker = \"$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/x86_64-linux-android21-clang\"" >> ./.cargo/config.toml
- name: Build Android package
working-directory: ./wrappers/csharp
@@ -78,7 +79,7 @@ runs:
export ANDROID_ROOT="/usr/local/lib/android"
export ANDROID_SDK_ROOT="${ANDROID_ROOT}/sdk"
export ANDROID_NDK=$ANDROID_SDK_ROOT/ndk-bundle
- ln -sfn $ANDROID_SDK_ROOT/ndk/25.2.9519653 $ANDROID_NDK
+ ln -sfn $ANDROID_SDK_ROOT/ndk/27.2.12479018 $ANDROID_NDK
python GeneratePackage.py -p android
diff --git a/.github/workflows/native/native-build-macos/action.yml b/.github/workflows/native/native-build-macos/action.yml
index 029d591b1..9f75689c1 100644
--- a/.github/workflows/native/native-build-macos/action.yml
+++ b/.github/workflows/native/native-build-macos/action.yml
@@ -9,6 +9,20 @@ runs:
name: config.txt
path: ./wrappers/csharp
+ - name: Install Homebrew
+ shell: bash
+ run: |
+ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
+ echo "PATH=/opt/homebrew/bin:$PATH" >> $GITHUB_ENV
+
+ - name: Verify Homebrew installation
+ shell: bash
+ run: brew --version
+
+ - name: Install mono
+ shell: bash
+ run: brew install mono
+
- name: Install Rust
shell: bash
run: |
@@ -28,13 +42,6 @@ runs:
source $HOME/.cargo/env
cargo test
- - name: Building Mac Full
- working-directory: ./wrappers/csharp
- shell: bash
- run: |
- source $HOME/.cargo/env
- python3 GeneratePackage.py -p mac
-
- name: Building Mac Modern
working-directory: ./wrappers/csharp
shell: bash
@@ -42,9 +49,16 @@ runs:
source $HOME/.cargo/env
python3 GeneratePackage.py -p mac-modern
+ - name: Prepare folder structure
+ working-directory: ./
+ shell: bash
+ run: |
+ mv wrappers/csharp/macos-modern wrappers/csharp/macos-modern-temp
+ mkdir -p wrappers/csharp/macos-modern/macos-modern
+ mv wrappers/csharp/macos-modern-temp/* wrappers/csharp/macos-modern/macos-modern/
+ rmdir wrappers/csharp/macos-modern-temp
+
- uses: actions/upload-artifact@v4.3.6
with:
name: native-macos
- path: |
- wrappers/csharp/macos-full/**
- wrappers/csharp/macos-modern/**
+ path: wrappers/csharp/macos-modern/
diff --git a/.github/workflows/nugets/nugets-linux/action.yml b/.github/workflows/nugets/nugets-linux/action.yml
deleted file mode 100644
index 077497e32..000000000
--- a/.github/workflows/nugets/nugets-linux/action.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: Build Linux Nuget
-description: This builds the linux compatible nuget
-runs:
- using: composite
- steps:
- - name: Download Config
- uses: actions/download-artifact@v4
- with:
- name: config.txt
- path: ./wrappers/csharp
-
- - name: Download Native Libs
- uses: actions/download-artifact@v4
- with:
- pattern: native-*
- merge-multiple: true
- path: ./wrappers/csharp
-
- - name: Install nuget
- shell: bash
- run: sudo apt-get install nuget
-
- - name: Generating Linux Nuget
- working-directory: ./wrappers/csharp/nuget
- shell: bash
- run: python3 GenerateNuget.py -p linux
-
- - name: Place Artifacts
- shell: bash
- run: mv wrappers/csharp/nuget/Linux/package/*.nupkg .
-
- - uses: actions/upload-artifact@v4.3.6
- with:
- name: nugets-linux
- path: ./*.nupkg
diff --git a/.github/workflows/nugets/nugets-macos/action.yml b/.github/workflows/nugets/nugets-macos/action.yml
deleted file mode 100644
index 827bd93c5..000000000
--- a/.github/workflows/nugets/nugets-macos/action.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-name: Build macOS Nuget
-description: This builds the macos compatible nuget
-runs:
- using: composite
- steps:
- - name: Download Config
- uses: actions/download-artifact@v4
- with:
- name: config.txt
- path: ./wrappers/csharp
-
- - name: Download Native Libs
- uses: actions/download-artifact@v4
- with:
- pattern: native-*
- merge-multiple: true
- path: ./wrappers/csharp
-
- - name: Update Nuget
- shell: bash
- run: sudo nuget update -self
-
- # dotnet restore fails on macos-12
- # https://github.com/actions/virtual-environments/issues/5768
- - name: Nuget workaround
- shell: bash
- run: |
- rm -rf ~/.config/NuGet/NuGet.Config
- dotnet nuget list source
-
- - name: Generating IOS Nuget
- working-directory: ./wrappers/csharp/nuget
- shell: bash
- run: python3 GenerateNuget.py -p ios
-
- - name: Generating MAC-MODERN Nuget
- working-directory: ./wrappers/csharp/nuget
- shell: bash
- run: python3 GenerateNuget.py -p mac-modern
-
- - name: Generating MAC-FULL Nuget
- working-directory: ./wrappers/csharp/nuget
- shell: bash
- run: python3 GenerateNuget.py -p mac
-
- - name: Generating Android Nuget
- working-directory: ./wrappers/csharp/nuget
- shell: bash
- run: python3 GenerateNuget.py -p android
-
- - name: Place Artifacts
- shell: bash
- run: |
- mv wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/package/*.nupkg .
- mv wrappers/csharp/nuget/macOS/Full/package/*.nupkg .
- mv wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/package/*.nupkg .
- mv wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/package/*.nupkg .
-
- - uses: actions/upload-artifact@v4.3.6
- with:
- name: nugets-macos
- path: ./*.nupkg
diff --git a/.github/workflows/nugets/nugets-windows/action.yml b/.github/workflows/nugets/nugets-windows/action.yml
index 918e62858..d7c2e6ad5 100644
--- a/.github/workflows/nugets/nugets-windows/action.yml
+++ b/.github/workflows/nugets/nugets-windows/action.yml
@@ -25,21 +25,23 @@ runs:
shell: bash
run : curl https://dist.nuget.org/win-x86-commandline/latest/nuget.exe --output nuget.exe
- - name: Generating WIN Nuget
- working-directory: ./wrappers/csharp/nuget
+ - name: Read version from config file
shell: bash
- run: python GenerateNuget.py -p windows
+ working-directory: ./wrappers/csharp
+ run: |
+ VERSION=$(grep 'version' config.txt | cut -d '=' -f2 | tr -d ' "')
+
+ echo "VERSION=$VERSION" >> $GITHUB_ENV
+ echo "Using version: $VERSION"
- name: Generating DOTNET Nuget
working-directory: ./wrappers/csharp/nuget
shell: bash
- run: python GenerateNuget.py -p core
+ run: nuget pack ./dotnet-core/Devolutions.Crypto.Core.nuspec -Version $VERSION -OutputDirectory ./dotnet-core/package
- name: Place Artifacts
shell: bash
- run: |
- mv wrappers/csharp/nuget/Windows/package/*.nupkg .
- mv wrappers/csharp/nuget/dotnet-core/package/*.nupkg .
+ run: mv wrappers/csharp/nuget/dotnet-core/package/*.nupkg .
- uses: actions/upload-artifact@v4.3.6
with:
diff --git a/.github/workflows/python/build/macos/action.yml b/.github/workflows/python/build/macos/action.yml
index c16726754..3c33b5180 100644
--- a/.github/workflows/python/build/macos/action.yml
+++ b/.github/workflows/python/build/macos/action.yml
@@ -25,6 +25,14 @@ runs:
with:
python-version: "3.12"
+ - name: Building aarch64 3.12 Wheel
+ working-directory: ./python
+ shell: bash
+ run: |
+ source $HOME/.cargo/env
+
+ maturin build --release -i python --target=aarch64-apple-darwin
+
- name: Building x86_64 3.12 Wheel
working-directory: ./python
shell: bash
diff --git a/.github/workflows/release-nugets.yml b/.github/workflows/release-nugets.yml
index a2fc9c8b9..8e962edd3 100644
--- a/.github/workflows/release-nugets.yml
+++ b/.github/workflows/release-nugets.yml
@@ -2,30 +2,6 @@ name: Deploy to production (Nugets)
on:
workflow_dispatch:
inputs:
- publish_ios_nuget:
- description: "Publish Devolutions.Crypto.iOS.*.nupkg"
- required: true
- type: boolean
- publish_android_nuget:
- description: "Publish Devolutions.Crypto.Android.*.nupkg"
- required: true
- type: boolean
- publish_macos_full_nuget:
- description: "Publish Devolutions.Crypto.Mac.Full.*.nupkg"
- required: true
- type: boolean
- publish_macos_modern_nuget:
- description: "Publish Devolutions.Crypto.Mac.Modern.*.nupkg"
- required: true
- type: boolean
- publish_windows_nuget:
- description: "Publish Devolutions.Crypto.Windows.*.nupkg"
- required: true
- type: boolean
- publish_linux_nuget:
- description: "Publish Devolutions.Crypto.Linux.*.nupkg"
- required: true
- type: boolean
publish_core_nuget:
description: "Publish Devolutions.Crypto.Core.*.nupkg"
required: true
@@ -36,7 +12,7 @@ on:
type: boolean
jobs:
deploy:
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
environment: publish
steps:
- uses: actions/checkout@v4
@@ -58,119 +34,11 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CI: true
- run: |
- dv github download-artifact nugets-linux . devolutions-crypto
- dv github download-artifact nugets-macos . devolutions-crypto
- dv github download-artifact nugets-windows . devolutions-crypto
+ run: dv github download-artifact nugets-windows . devolutions-crypto
- name: Extract Artifacts
- run: |
- 7z x nugets-linux.zip -o./devolutions-crypto-nugets
- 7z x nugets-macos.zip -o./devolutions-crypto-nugets
- 7z x nugets-windows.zip -o./devolutions-crypto-nugets
-
- - name: Publish iOS NuGet
- if: ${{ inputs.publish_ios_nuget }}
- run: |
- COMMAND="dotnet nuget push ./devolutions-crypto-nugets/Devolutions.Crypto.iOS.*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json"
-
- if [ '${{ inputs.publish_dry_run }}' == 'true' ]; then
- echo "Dry Run : True"
- else
- echo "Dry Run : False"
- fi
-
- echo "Running : $COMMAND"
-
- if [ "${{ inputs.publish_dry_run }}" != "true" ]; then # if not dry run, actually run the command
- eval "$COMMAND"
- fi
-
- - name: Publish Android NuGet
- if: ${{ inputs.publish_android_nuget }}
- run: |
- COMMAND="dotnet nuget push ./devolutions-crypto-nugets/Devolutions.Crypto.Android.*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json"
-
- if [ '${{ inputs.publish_dry_run }}' == 'true' ]; then
- echo "Dry Run : True"
- else
- echo "Dry Run : False"
- fi
-
- echo "Running : $COMMAND"
-
- if [ "${{ inputs.publish_dry_run }}" != "true" ]; then # if not dry run, actually run the command
- eval "$COMMAND"
- fi
-
- - name: Publish Mac Full NuGet
- if: ${{ inputs.publish_macos_full_nuget }}
- run: |
- COMMAND="dotnet nuget push ./devolutions-crypto-nugets/Devolutions.Crypto.Mac.Full.*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json"
-
- if [ '${{ inputs.publish_dry_run }}' == 'true' ]; then
- echo "Dry Run : True"
- else
- echo "Dry Run : False"
- fi
-
- echo "Running : $COMMAND"
-
- if [ "${{ inputs.publish_dry_run }}" != "true" ]; then # if not dry run, actually run the command
- eval "$COMMAND"
- fi
-
- - name: Publish Mac Modern NuGet
- if: ${{ inputs.publish_macos_modern_nuget }}
- run: |
- COMMAND="dotnet nuget push ./devolutions-crypto-nugets/Devolutions.Crypto.Mac.Modern.*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json"
-
- if [ '${{ inputs.publish_dry_run }}' == 'true' ]; then
- echo "Dry Run : True"
- else
- echo "Dry Run : False"
- fi
-
- echo "Running : $COMMAND"
-
- if [ "${{ inputs.publish_dry_run }}" != "true" ]; then # if not dry run, actually run the command
- eval "$COMMAND"
- fi
-
- - name: Publish Windows NuGet
- if: ${{ inputs.publish_windows_nuget }}
- run: |
- COMMAND="dotnet nuget push ./devolutions-crypto-nugets/Devolutions.Crypto.Windows.*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json"
-
- if [ '${{ inputs.publish_dry_run }}' == 'true' ]; then
- echo "Dry Run : True"
- else
- echo "Dry Run : False"
- fi
-
- echo "Running : $COMMAND"
-
- if [ "${{ inputs.publish_dry_run }}" != "true" ]; then # if not dry run, actually run the command
- eval "$COMMAND"
- fi
-
- - name: Publish Linux NuGet
- if: ${{ inputs.publish_linux_nuget }}
- run: |
- COMMAND="dotnet nuget push ./devolutions-crypto-nugets/Devolutions.Crypto.Linux.*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json"
-
- if [ '${{ inputs.publish_dry_run }}' == 'true' ]; then
- echo "Dry Run : True"
- else
- echo "Dry Run : False"
- fi
-
- echo "Running : $COMMAND"
-
- if [ "${{ inputs.publish_dry_run }}" != "true" ]; then # if not dry run, actually run the command
- eval "$COMMAND"
- fi
-
+ run: 7z x nugets-windows.zip -o./devolutions-crypto-nugets
+
- name: Publish Core NuGet
if: ${{ inputs.publish_core_nuget }}
run: |
diff --git a/.github/workflows/release-others.yml b/.github/workflows/release-others.yml
index d502e1327..c0d647864 100644
--- a/.github/workflows/release-others.yml
+++ b/.github/workflows/release-others.yml
@@ -20,7 +20,7 @@ on:
type: boolean
jobs:
deploy:
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
environment: publish
steps:
- uses: actions/checkout@v4
diff --git a/.github/workflows/tests/csharp/android/action.yml b/.github/workflows/tests/csharp/android/action.yml
index 0b5b61360..c86e66f8f 100644
--- a/.github/workflows/tests/csharp/android/action.yml
+++ b/.github/workflows/tests/csharp/android/action.yml
@@ -3,40 +3,60 @@ description: This tests the Android nuget package.
runs:
using: composite
steps:
- - name: Download Config
- uses: actions/download-artifact@v4
- with:
- name: config.txt
- path: ./wrappers/csharp
-
- name: Download Nugets Libs
uses: actions/download-artifact@v4
with:
pattern: nugets-*
merge-multiple: true
path: ./wrappers/csharp/tests/unit-tests/nugets/Nugets
-
- - name: Update Nuget
+ - name: Add local nuget source
shell: bash
- run: sudo nuget update -self
+ run: |
+ dotnet nuget add source /home/runner/work/devolutions-crypto/devolutions-crypto/wrappers/csharp/tests/unit-tests/nugets/Nugets -n LocalPackages
+ dotnet nuget list source
+
+ - name: Install android Workload
+ shell: bash
+ run: sudo dotnet workload install android
+
+ - name: Enable KVM group perms
+ shell: bash
+ run: |
+ echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
+ sudo udevadm control --reload-rules
+ sudo udevadm trigger --name-match=kvm
+
+ - name: Install required android dependencies
+ shell: bash
+ working-directory: /usr/local/lib/android/sdk/cmdline-tools/latest/bin
+ run: |
+ echo "yes" | ./sdkmanager emulator
+ echo "yes" | ./sdkmanager "platform-tools"
+
+ sudo apt-get install libpulse0
+
+ echo "/usr/local/lib/android/sdk/platform-tools" >> $GITHUB_PATH
+ echo "/usr/local/lib/android/sdk/emulator" >> $GITHUB_PATH
+ echo "/usr/local/lib/android/sdk/cmdline-tools/latest/bin" >> $GITHUB_PATH
- name: Starting ADB Server
shell: bash
run: adb start-server
- - name: Installing SDK Android-33 x86_64
+ - name: Installing SDK Android-33 arm64-v8a
shell: bash
- run: echo "y" | /Users/runner/Library/Android/sdk/tools/bin/sdkmanager --install "system-images;android-33;google_apis;x86_64"
+ run: echo "y" | sdkmanager --install "system-images;android-33;google_apis;x86_64"
- name: Creating Android device
shell: bash
- run: echo "no" | /Users/runner/Library/Android/sdk/tools/bin/avdmanager create avd -n test_emulator -k "system-images;android-33;google_apis;x86_64"
+ run: echo "no" | avdmanager create avd -n test_emulator -k "system-images;android-33;google_apis;x86_64"
- name: Starting emulator
- working-directory: /Users/runner/Library/Android/sdk/tools/
shell: bash
- run: emulator @test_emulator &
+ run: |
+ export QT_QPA_PLATFORM=offscreen
+ emulator @test_emulator -no-audio -no-window -no-snapshot -no-boot-anim -accel auto -gpu auto -qemu -m 2048 &
- name: Waiting for emulator to boot
shell: bash
@@ -61,7 +81,37 @@ runs:
adb shell input keyevent 82
- - name: Unit tests XAMARIN-ANDROID
- working-directory: ./wrappers/csharp/tests/unit-tests/nugets
+ - name: Show adb devices
+ shell: bash
+ run: adb devices
+
+ - name: Unit tests Android
+ working-directory: ./wrappers/csharp/tests/unit-tests/nugets/android
+ shell: bash
+ run: dotnet build -t:run --configuration Debug
+
+ - name: Pipe logcat to file
+ shell: bash
+ run: |
+ adb logcat -c
+ adb logcat > build.log &
+
+ - name: Wait for tests
shell: bash
- run: python3 unit-tests.py -p android
+ run: |
+ while true; do
+ if grep -q "====ENDOFTESTS====" build.log; then
+ echo "Found '====ENDOFTESTS===='."
+ cat build.log
+ exit 0
+ fi
+ sleep 5
+ done
+
+ - name: Check fail
+ shell: bash
+ run: |
+ grep "Failed: 0" build.log
+ if [ $? -ne 0 ]; then
+ exit 1
+ fi
\ No newline at end of file
diff --git a/.github/workflows/tests/csharp/integration-ios/action.yml b/.github/workflows/tests/csharp/integration-ios/action.yml
deleted file mode 100644
index b4e66d060..000000000
--- a/.github/workflows/tests/csharp/integration-ios/action.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-name: Integration Tests iOS
-description: Ensure that the iOS package is compatible with other rust projects.
-runs:
- using: composite
- steps:
- - name: Download Config
- uses: actions/download-artifact@v4
- with:
- name: config.txt
- path: ./wrappers/csharp
-
- - name: Download Nugets
- uses: actions/download-artifact@v4
- with:
- pattern: nugets-*
- merge-multiple: true
- path: ./wrappers/csharp/tests/integration-tests/nugets/Nugets
-
- - name: Update Nuget
- shell: bash
- run: sudo nuget update -self
-
- - name: Install rust
- shell: bash
- run: |
- set -e
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable
- echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- source $HOME/.cargo/env
-
- rustup target add x86_64-apple-ios
-
- - name: Integration tests XAMARIN IOS
- working-directory: ./wrappers/csharp/tests/integration-tests/nugets
- shell: bash
- run: python3 integration-tests.py -p ios
diff --git a/.github/workflows/tests/csharp/ios/action.yml b/.github/workflows/tests/csharp/ios/action.yml
index 612076b0c..75683c0e8 100644
--- a/.github/workflows/tests/csharp/ios/action.yml
+++ b/.github/workflows/tests/csharp/ios/action.yml
@@ -3,24 +3,55 @@ description: This tests the iOS nuget package.
runs:
using: composite
steps:
- - name: Download Config
- uses: actions/download-artifact@v4
- with:
- name: config.txt
- path: ./wrappers/csharp
-
- - name: Download Native Libs
+ - name: Download Nugets Libs
uses: actions/download-artifact@v4
with:
pattern: nugets-*
merge-multiple: true
path: ./wrappers/csharp/tests/unit-tests/nugets/Nugets
- - name: Update Nuget
+ - name: Add local nuget source
+ shell: bash
+ run: |
+ dotnet nuget add source /Users/runner/work/devolutions-crypto/devolutions-crypto/wrappers/csharp/tests/unit-tests/nugets/Nugets -n LocalPackages
+ dotnet nuget list source
+
+ - name: Install iOS Workload
+ shell: bash
+ run: sudo dotnet workload install ios
+
+ - name: List simulators
+ shell: bash
+ run: xcrun simctl list devices
+
+
+ - name: Extract UDID
+ shell: bash
+ run: |
+ # Find the UDID of the iPhone 16 simulator running iOS 18.0
+ SIMULATOR_UDID=$(xcrun simctl list devices available 'iOS 18.0' | grep 'iPhone 16' | awk -F '[()]' '{print $2}' | head -n 1)
+
+ # Check if a UDID was found
+ if [ -n "$SIMULATOR_UDID" ]; then
+ # Export it as an environment variable
+ export IPHONE_16_SIM_UDID=$SIMULATOR_UDID
+ echo "IPHONE_16_SIM_UDID=$SIMULATOR_UDID" >> $GITHUB_ENV
+ echo "iPhone 16 UDID stored in environment variable IPHONE_16_SIM_UDID: $IPHONE_16_SIM_UDID"
+ else
+ echo "iPhone 16 simulator with iOS 18.0 not found."
+ exit 1
+ fi
+
+ - name: Unit tests
+ working-directory: ./wrappers/csharp/tests/unit-tests/nugets/iOS
shell: bash
- run: sudo nuget update -self
+ run: dotnet build -t:run -p:_DeviceName=:v2:udid="$IPHONE_16_SIM_UDID" 2>&1 | tee build.log
- - name: Unit tests XAMARIN-IOS
- working-directory: ./wrappers/csharp/tests/unit-tests/nugets
+ - name: Check fail
+ working-directory: ./wrappers/csharp/tests/unit-tests/nugets/iOS
shell: bash
- run: python3 unit-tests.py -p ios
+ run: |
+ grep "Failed: 0" build.log
+ if [ $? -ne 0 ]; then
+ exit 1
+ fi
diff --git a/.github/workflows/tests/csharp/linux/action.yml b/.github/workflows/tests/csharp/linux/action.yml
index ce7b03bf4..2458a4618 100644
--- a/.github/workflows/tests/csharp/linux/action.yml
+++ b/.github/workflows/tests/csharp/linux/action.yml
@@ -20,11 +20,14 @@ runs:
merge-multiple: true
path: ./wrappers/csharp/tests/unit-tests/nugets/Nugets
- - name: Install nuget
+ - name: Add local nuget source
shell: bash
- run: sudo apt-get install nuget
+ run: |
+ dotnet nuget add source /home/runner/work/devolutions-crypto/devolutions-crypto/wrappers/csharp/tests/unit-tests/nugets/Nugets -n LocalPackages
+ dotnet nuget list source
- - name: Unit tests DOTNET CORE
+ - name: Unit tests
working-directory: ./wrappers/csharp/tests/unit-tests/nugets
shell: bash
- run: python unit-tests.py -p core
+ run: dotnet test ./dotnet-core/dotnet-core.csproj
+
diff --git a/.github/workflows/tests/csharp/macos/action.yml b/.github/workflows/tests/csharp/macos/action.yml
index 4a6c91c4d..55921b223 100644
--- a/.github/workflows/tests/csharp/macos/action.yml
+++ b/.github/workflows/tests/csharp/macos/action.yml
@@ -16,31 +16,17 @@ runs:
merge-multiple: true
path: ./wrappers/csharp/tests/unit-tests/nugets/Nugets
- - name: Update Nuget
+ - name: Add local nuget source
shell: bash
run: |
- sudo nuget update -self
+ dotnet nuget add source /Users/runner/work/devolutions-crypto/devolutions-crypto/wrappers/csharp/tests/unit-tests/nugets/Nugets -n LocalPackages
+ dotnet nuget list source
- - name: Unit tests DOTNET CORE
- working-directory: ./wrappers/csharp/tests/unit-tests/nugets
- shell: bash
- run: python3 unit-tests.py -p core
-
- - name: Unit tests XAMARIN-MAC-FULL
- working-directory: ./wrappers/csharp/tests/unit-tests/nugets
- shell: bash
- run: python3 unit-tests.py -p mac
-
-# Install latest Xamarin.Mac to fix issue with the one packaged in the runner. (mac modern only)
-# ld: Framework not found CHIP
-# https://github.com/actions/runner-images/issues/7058
- - name: Install Latest Xamarin Mac
+ - name: Install macOS Workload
shell: bash
- run : |
- wget https://download.visualstudio.microsoft.com/download/pr/1d39655e-c5e8-4af9-93cd-4174278a0895/7976384b6c703a55a4c9d5f1c640e0b1/xamarin.mac-9.1.0.2.pkg
- sudo installer -pkg xamarin.mac-9.1.0.2.pkg -target /
+ run: sudo dotnet workload install macos
- - name: Unit tests XAMARIN-MAC-MODERN
+ - name: Unit tests
working-directory: ./wrappers/csharp/tests/unit-tests/nugets
shell: bash
- run: python3 unit-tests.py -p mac-modern
+ run: dotnet test ./dotnet-core/dotnet-core.csproj
diff --git a/.github/workflows/tests/csharp/windows/action.yml b/.github/workflows/tests/csharp/windows/action.yml
index 936fb9b24..71648796e 100644
--- a/.github/workflows/tests/csharp/windows/action.yml
+++ b/.github/workflows/tests/csharp/windows/action.yml
@@ -19,27 +19,14 @@ runs:
pattern: nugets-*
merge-multiple: true
path: ./wrappers/csharp/tests/unit-tests/nugets/Nugets
-
- - name: setting up PATH environment variable
+
+ - name: Add local nuget source
shell: bash
run: |
- echo "c:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\Roslyn" >> $GITHUB_PATH
- echo "c:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TestWindow" >> $GITHUB_PATH
-
- - name: Add msbuild to PATH
- uses: microsoft/setup-msbuild@v2
-
- - name: Downloading nuget
- working-directory: ./wrappers/csharp/tests/unit-tests/nugets
- shell: bash
- run: curl https://dist.nuget.org/win-x86-commandline/latest/nuget.exe --output nuget.exe
-
- - name: Unit tests DOTNET FRAMEWORK PACKAGE CONFIG
- working-directory: ./wrappers/csharp/tests/unit-tests/nugets
- shell: bash
- run: python unit-tests.py -p framework
+ dotnet nuget add source "D:\a\devolutions-crypto\devolutions-crypto\wrappers\csharp\tests\unit-tests\nugets\Nugets" -n LocalPackages
+ dotnet nuget list source
- - name: Unit tests DOTNET CORE
+ - name: Unit tests
working-directory: ./wrappers/csharp/tests/unit-tests/nugets
shell: bash
- run: python unit-tests.py -p core
+ run: dotnet test ./dotnet-core/dotnet-core.csproj
\ No newline at end of file
diff --git a/.github/workflows/tests/python/macos/action.yml b/.github/workflows/tests/python/macos/action.yml
index d891bebbc..393731925 100644
--- a/.github/workflows/tests/python/macos/action.yml
+++ b/.github/workflows/tests/python/macos/action.yml
@@ -22,7 +22,7 @@ runs:
- name: Install wheel
working-directory: ./wheels
shell: bash
- run: pip install --no-index --find-links="./" devolutions_crypto
+ run: pip install --no-index --find-links="./" devolutions_crypto -vvv
- name: Run tests
working-directory: ./wrappers/python
diff --git a/.gitignore b/.gitignore
index 678b9d47a..faa94f2e4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -28,4 +28,5 @@ obj
.angular
node_modules
__pycache__
-config.txt
\ No newline at end of file
+config.txt
+.github/hooks
diff --git a/wrappers/csharp/GeneratePackage.py b/wrappers/csharp/GeneratePackage.py
index faefb942c..afe8035dd 100644
--- a/wrappers/csharp/GeneratePackage.py
+++ b/wrappers/csharp/GeneratePackage.py
@@ -124,9 +124,7 @@ def main():
"windows": build_windows,
"dotnet-core": build_dotnet_core,
"linux": build_linux,
- "mac": build_mac_full,
"mac-modern": build_mac_modern,
- "ios": build_ios,
"android": build_android,
}
@@ -324,57 +322,6 @@ def build_linux(assembly_manifest, version, args):
os.remove("./linux/bin/AssemblyInfo.cs")
-def build_mac_full(assembly_manifest, version, args):
- architectures = [
- #{"name" : "i686", "value" : "i686-apple-darwin"}, # 32 bit no longer supported by mac
- {
- "name" : "x86_64",
- "value" : "x86_64-apple-darwin",
- "cargo_output": "../../target/x86_64-apple-darwin/release/libdevolutions_crypto_ffi.dylib",
- "filename" : "x86_64/libDevolutionsCrypto.dylib"
- },
- {
- "name" : "aarch64",
- "value" : "aarch64-apple-darwin",
- "cargo_output": "../../target/aarch64-apple-darwin/release/libdevolutions_crypto_ffi.dylib",
- "filename" : "aarch64/libDevolutionsCrypto.dylib"
- }
- ]
-
- target_folder = "./macos-full"
- if args.output:
- target_folder = args.output
-
- build_native(architectures, target_folder, manifest=assembly_manifest, clean=False)
-
- print("Building Managed Library...")
- output = exec_command("csc -out:./macos-full/bin/Devolutions.Crypto.dll -debug:pdbonly -pdb:./macos-full/bin/Devolutions.Crypto.pdb -target:library -platform:anycpu -define:MAC_FULL src/*.cs ./macos-full/bin/AssemblyInfo.cs -optimize")
- print(output)
-
- if("error" in output):
- exit(1)
-
- os.remove("./macos-full/bin/AssemblyInfo.cs")
-
- print("Making universal binary...")
-
- os.mkdir("./macos-full/bin/universal")
-
- libs = " "
-
- for arch in architectures:
- libs = libs + " ./macos-full/bin/" + arch["name"] + "/" + "libDevolutionsCrypto.dylib"
-
- args = "lipo -create"
- args = args + libs
- args = args + " -output ./macos-full/bin/universal/libDevolutionsCrypto.dylib"
-
- output = exec_command(args)
- print(output)
-
- if("error" in output):
- exit(1)
-
def build_mac_modern(assembly_manifest, version, args):
architectures = [
#{"name" : "i686", "value" : "i686-apple-darwin"}, # no longer supported in stable (Tier 3)
@@ -417,91 +364,6 @@ def build_mac_modern(assembly_manifest, version, args):
if("error" in output):
exit(1)
-def build_ios(assembly_manifest, version, args):
- architectures = [
- # {"name" : "armv7", "value" : "armv7-apple-ios"}, no longer supported in stable (Tier 3)
- # {"name" : "armv7s", "value" : "armv7s-apple-ios"}, no longer supported in stable (Tier 3)
- # {"name" : "i386", "value" : "i386-apple-ios"}, no longer supported in stable (Tier 3)
- {"name" : "x86_64",
- "value" : "x86_64-apple-ios",
- "manifest_path" : "./Cargo.toml",
- "cargo_output": "../../target/x86_64-apple-ios/release/libdevolutions_crypto_ffi.dylib",
- "filename" : "x86_64/libDevolutionsCrypto.dylib"},
- {"name" : "aarch64",
- "value" : "aarch64-apple-ios",
- "manifest_path" : "./Cargo.toml",
- "cargo_output": "../../target/aarch64-apple-ios/release/libdevolutions_crypto_ffi.dylib",
- "filename" : "aarch64/libDevolutionsCrypto.dylib"},
- ]
-
- print("Checking minimum version variable")
- if "IPHONEOS_DEPLOYMENT_TARGET" in os.environ:
- print("IPHONEOS_DEPLOYMENT_TARGET = " + os.getenv("IPHONEOS_DEPLOYMENT_TARGET"))
- else:
- print("Variable IPHONEOS_DEPLOYMENT_TARGET not found!")
- exit(1)
-
- target_folder = "./ios"
- if args.output:
- target_folder = args.output
-
- build_native(architectures, target_folder, assembly_manifest)
-
- print("Making universal binary...")
-
- os.mkdir("./ios/bin/universal")
-
- libs = " "
-
- for arch in architectures:
- libs = libs + " ./ios/bin/" + arch["name"] + "/" + "libDevolutionsCrypto.dylib"
-
- args = "lipo -create "
- args = args + libs
- args = args + " -output ./ios/bin/universal/libDevolutionsCrypto.dylib"
-
- output = exec_command(args)
- print(output)
-
- if("error" in output):
- exit(1)
-
- print("Packaging into .framework ...") #########################
- # Unlike .a (static lib) the .dylib needs to be packaged into a .framework package. iOS is now using a dynamic library.
-
- universal_folder = "./ios/bin/universal/"
- os.mkdir(universal_folder + "libDevolutionsCrypto.framework")
- shutil.move(universal_folder + "libDevolutionsCrypto.dylib", universal_folder + "libDevolutionsCrypto.framework/libDevolutionsCrypto")
-
- print("Fixing rpath")
- command = subprocess.Popen(["install_name_tool", "-id", "@rpath/libDevolutionsCrypto.framework/libDevolutionsCrypto", universal_folder + "libDevolutionsCrypto.framework/libDevolutionsCrypto"], stdout=subprocess.PIPE)
- output = command.stdout.read().decode('utf-8')
- print(output)
-
- plist_framework_data = None
-
- with open("./nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Info.plist", "r") as file:
- plist_framework_data = file.read()
-
- now = datetime.datetime.now()
-
- plist_framework_data = plist_framework_data.replace("||VERSION||", version + "." + str(now.hour) + str(now.minute))
- plist_framework_data = plist_framework_data.replace("||SHORT_VERSION||", version)
-
- with open(universal_folder + "libDevolutionsCrypto.framework/Info.plist", "w+") as file:
- file.write(plist_framework_data)
- ###################################
-
- print("Building Managed Library...")
- output = exec_command("csc -out:./ios/bin/Devolutions.Crypto.dll -debug:pdbonly -pdb:./ios/bin/Devolutions.Crypto.pdb -target:library -platform:anycpu -define:IOS src/*.cs ./ios/bin/AssemblyInfo.cs -optimize")
- print(output)
-
- if("error" in output):
- exit(1)
-
- os.remove("./ios/bin/AssemblyInfo.cs")
-
-
def build_android(assembly_manifest, version, args):
architectures = [
{"name" : "aarch64",
diff --git a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android.nuspec b/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android.nuspec
deleted file mode 100644
index 211817af6..000000000
--- a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android.nuspec
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
- Devolutions.Crypto.Android
- $version$
- Devolutions Inc
- Devolutions Cryptographic Library For the Xamarin Android platform
- false
- Copyright 2022 @ Devolutions Inc
- Apache-2.0 OR MIT
- https://github.com/Devolutions/devolutions-crypto
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android.sln b/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android.sln
deleted file mode 100644
index f709e3776..000000000
--- a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android.sln
+++ /dev/null
@@ -1,28 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Devolutions.Crypto.Android", "Devolutions.Crypto.Android\Devolutions.Crypto.Android.csproj", "{3396BCB2-53EE-4376-83DD-BA07CEC8876F}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Devolutions.Crypto.Android.NuGet", "Devolutions.Crypto.Android.NuGet", "{8254380E-5F61-41DD-8672-FA0C9070239F}"
- ProjectSection(SolutionItems) = preProject
- Devolutions.Crypto.nuspec = Devolutions.Crypto.nuspec
- EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "devolutions-crypto", "..\..\..\src\devolutions-crypto.csproj", "{99DA8C37-49D6-4BF4-A3F4-09968649EA65}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {3396BCB2-53EE-4376-83DD-BA07CEC8876F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {3396BCB2-53EE-4376-83DD-BA07CEC8876F}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {3396BCB2-53EE-4376-83DD-BA07CEC8876F}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {3396BCB2-53EE-4376-83DD-BA07CEC8876F}.Release|Any CPU.Build.0 = Release|Any CPU
- {99DA8C37-49D6-4BF4-A3F4-09968649EA65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {99DA8C37-49D6-4BF4-A3F4-09968649EA65}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {99DA8C37-49D6-4BF4-A3F4-09968649EA65}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {99DA8C37-49D6-4BF4-A3F4-09968649EA65}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android.csproj b/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android.csproj
deleted file mode 100644
index 5e925b6c5..000000000
--- a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android.csproj
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {3396BCB2-53EE-4376-83DD-BA07CEC8876F}
- {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- {9ef11e43-1701-4396-8835-8392d57abb70}
- Library
- Properties
- Devolutions.Crypto.Android
- Devolutions.Crypto
- 512
- Resources\Resource.designer.cs
- Off
- v12.0
-
-
- true
- portable
- false
- bin\Debug\
- DEBUG;TRACE;ANDROID;
- prompt
- 4
-
-
- true
- pdbonly
- true
- bin\Release\
- TRACE;ANDROID;
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- libs\arm64-v8a\libDevolutionsCrypto.so
-
-
- libs\armeabi-v7a\libDevolutionsCrypto.so
-
-
- libs\x86\libDevolutionsCrypto.so
-
-
- libs\x86_64\libDevolutionsCrypto.so
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Resources/AboutResources.txt b/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Resources/AboutResources.txt
deleted file mode 100644
index c2bca974c..000000000
--- a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Resources/AboutResources.txt
+++ /dev/null
@@ -1,44 +0,0 @@
-Images, layout descriptions, binary blobs and string dictionaries can be included
-in your application as resource files. Various Android APIs are designed to
-operate on the resource IDs instead of dealing with images, strings or binary blobs
-directly.
-
-For example, a sample Android app that contains a user interface layout (main.axml),
-an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
-would keep its resources in the "Resources" directory of the application:
-
-Resources/
- drawable/
- icon.png
-
- layout/
- main.axml
-
- values/
- strings.xml
-
-In order to get the build system to recognize Android resources, set the build action to
-"AndroidResource". The native Android APIs do not operate directly with filenames, but
-instead operate on resource IDs. When you compile an Android application that uses resources,
-the build system will package the resources for distribution and generate a class called "R"
-(this is an Android convention) that contains the tokens for each one of the resources
-included. For example, for the above Resources layout, this is what the R class would expose:
-
-public class R {
- public class drawable {
- public const int icon = 0x123;
- }
-
- public class layout {
- public const int main = 0x456;
- }
-
- public class strings {
- public const int first_string = 0xabc;
- public const int second_string = 0xbcd;
- }
-}
-
-You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main
-to reference the layout/main.axml file, or R.strings.first_string to reference the first
-string in the dictionary file values/strings.xml.
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Resources/Resource.designer.cs b/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Resources/Resource.designer.cs
deleted file mode 100644
index a0725feca..000000000
--- a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Resources/Resource.designer.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#pragma warning disable 1591
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-[assembly: global::Android.Runtime.ResourceDesignerAttribute("Devolutions.Crypto.Android.Resource", IsApplication=false)]
-
-namespace Devolutions.Crypto.Android
-{
-
-
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")]
- public partial class Resource
- {
-
- static Resource()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- public partial class Attribute
- {
-
- static Attribute()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Attribute()
- {
- }
- }
-
- public partial class String
- {
-
- // aapt resource value: 0x7F010000
- public static int app_name = 2130771968;
-
- // aapt resource value: 0x7F010001
- public static int hello = 2130771969;
-
- static String()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private String()
- {
- }
- }
- }
-}
-#pragma warning restore 1591
diff --git a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Resources/values/strings.xml b/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Resources/values/strings.xml
deleted file mode 100644
index aba22e6f0..000000000
--- a/wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Resources/values/strings.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- Hello World, Click Me!
- Devolutions.Crypto.Android
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/GenerateNuget.py b/wrappers/csharp/nuget/GenerateNuget.py
deleted file mode 100644
index b37379704..000000000
--- a/wrappers/csharp/nuget/GenerateNuget.py
+++ /dev/null
@@ -1,260 +0,0 @@
-import argparse
-import platform
-import sys
-import subprocess
-import os
-import datetime
-import time
-import shutil
-
-platforms = { }
-
-def main():
- global platforms
- platforms = {
- "all": build_all,
- "windows": build_windows,
- "linux": build_linux,
- "mac": build_mac_full,
- "mac-modern": build_mac_modern,
- "ios": build_ios,
- "android": build_android,
- "core": build_dotnet_core,
- }
-
- parser = argparse.ArgumentParser()
-
- parser.add_argument("-p", "--platform", default=platform.system().lower(),
- choices=platforms.keys(),
- help="The platform to build for.")
-
- parser.add_argument("-o", "--output", default=None, help="Output folder")
-
- args = parser.parse_args()
-
- script_dir = os.path.dirname(os.path.abspath(__file__))
- print("script directory :")
- print(script_dir)
-
- version = ""
-
- with open('../config.txt', 'r') as file:
- data=file.read()
- version = data.split("version = \"")[1].split("\"", 1)[0]
-
- version_live_change()
-
- platforms.get(args.platform)(version, args)
-
-def version_live_change():
- print("Changing version manifest...")
- # Generate assembly manifest with the right version
- with open('../config.txt', 'r') as file:
- data=file.read()
- version_managed = data.split("version = \"")[1].split("\"", 1)[0]
-
- with open('../../../Cargo.toml', 'r') as file:
- data=file.read()
- version_native = data.split("version = \"")[1].split("\"", 1)[0]
-
-
- with open('../src/Native.cs', 'r+') as file:
- data=file.read()
- file.seek(0)
- data = data.replace("||MANAGED_VERSION||", version_managed)
- data = data.replace("||NATIVE_VERSION||", version_native)
- file.write(data)
- file.truncate()
-
-def build_all(version, args):
- for name, handler in platforms.items():
- if name != "all":
- handler(version, args)
-
-def build_windows(version, args):
- print("Generating WINDOWS nuget...")
-
- command= subprocess.Popen(["nuget", "pack", "./Windows/Devolutions.Crypto.Windows.nuspec", "-Version", version, "-OutputDirectory", "./Windows/package", "-Properties", "platform=windows"], stdout=subprocess.PIPE)
- output = command.stdout.read().decode('utf-8')
-
- print(output)
-
- if("error" in output):
- exit(1)
-
-def build_linux(version, args):
- print("Generating LINUX nuget...")
-
- command= subprocess.Popen(["nuget", "pack", "./Linux/Devolutions.Crypto.Linux.nuspec", "-Version", version, "-OutputDirectory", "./Linux/package", "-Properties", "platform=linux"], stdout=subprocess.PIPE)
- output = command.stdout.read().decode('utf-8')
-
- print(output)
-
- if("error" in output):
- exit(1)
-
-def build_ios(version, args):
- print("Generating assembly manifest for IOS...")
- # Assembly manifest IOS template
- assembly_manifest_ios = """
- using System.Reflection;
- using System.Runtime.CompilerServices;
-
- using Foundation;
-
- [assembly: LinkerSafe]
-
- [assembly: AssemblyTitle("DevolutionsCrypto")]
- [assembly: AssemblyCompany("Devolutions Inc.")]
- [assembly: AssemblyCopyright("Copyright © ||YEAR||")]
- [assembly: AssemblyVersion("||VERSION||")]
- """
-
- assembly_manifest_ios = assembly_manifest_ios.replace("||YEAR||", str(datetime.datetime.now().year))
- assembly_manifest_ios = assembly_manifest_ios.replace("||VERSION||", version)
-
- if not os.path.exists("./iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Properties"):
- os.makedirs("./iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Properties")
-
- with open("./iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Properties/AssemblyInfo.cs","wb+") as filee:
- filee.write(assembly_manifest_ios.encode("utf-8"))
-
-
- print("Building...")
-
- command= subprocess.Popen(["msbuild", "./iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS.sln", "/t:clean,restore,build", "/p:configuration=release"], stdout=subprocess.PIPE)
- output = command.stdout.read().decode('utf-8')
-
- print(output)
-
- if("FAILED" in output):
- exit(1)
-
- print("Generating IOS nuget...")
-
- command= subprocess.Popen(["nuget", "pack", "./iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS.nuspec", "-Version", version, "-OutputDirectory", "./iOS/Devolutions.Crypto.iOS/package"], stdout=subprocess.PIPE)
- output = command.stdout.read().decode('utf-8')
-
- print(output)
-
- if("error" in output):
- exit(1)
-
-def build_mac_modern(version, args):
- print("Generating assembly manifest for MAC MODERN...")
- # Assembly manifest Mac Modern template
- assembly_manifest_mac_modern = """
- using System.Reflection;
- using System.Runtime.CompilerServices;
-
- using Foundation;
-
- [assembly: LinkerSafe]
-
- [assembly: AssemblyTitle("DevolutionsCrypto")]
- [assembly: AssemblyCompany("Devolutions Inc.")]
- [assembly: AssemblyCopyright("Copyright © ||YEAR||")]
-
- [assembly: AssemblyVersion("||VERSION||")]
- """
-
- assembly_manifest_mac_modern = assembly_manifest_mac_modern.replace("||YEAR||", str(datetime.datetime.now().year))
- assembly_manifest_mac_modern = assembly_manifest_mac_modern.replace("||VERSION||", version)
-
- if not os.path.exists("./macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/Properties"):
- os.makedirs("./macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/Properties")
-
- with open("./macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/Properties/AssemblyInfo.cs","wb+") as filee:
- filee.write(assembly_manifest_mac_modern.encode("utf-8"))
-
- print("Building...")
-
- command= subprocess.Popen(["msbuild", "./macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac.sln", "/t:clean,restore,build", "/p:configuration=release"], stdout=subprocess.PIPE)
- output = command.stdout.read().decode('utf-8')
-
- print(output)
-
- if("FAILED" in output):
- exit(1)
-
- print("Generating MAC MODERN nuget...")
-
- command= subprocess.Popen(["nuget", "pack", "./macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac.Modern.nuspec", "-Version", version, "-OutputDirectory", "./macOS/Modern/Devolutions.Crypto.Mac/package"], stdout=subprocess.PIPE)
- output = command.stdout.read().decode('utf-8')
-
- print(output)
-
- if("error" in output):
- exit(1)
-
-def build_mac_full(version, args):
- print("Generating MAC FULL nuget...")
-
- # platform windows (since the managed mac dll only supports xamarin modern, windows managed dll is compatible)
- command= subprocess.Popen(["nuget", "pack", "./macOS/Full/Devolutions.Crypto.Mac.Full.nuspec", "-Version", version, "-OutputDirectory", "./macOS/Full/package"], stdout=subprocess.PIPE)
- output = command.stdout.read().decode('utf-8')
-
- print(output)
-
- if("error" in output):
- exit(1)
-
-def build_android(version, args):
- print("Generating assembly manifest for Android...")
- # Assembly manifest Android template
- assembly_manifest_android = """
- using System.Reflection;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- using Android.App;
-
- [assembly: AssemblyTitle("DevolutionsCrypto")]
- [assembly: AssemblyCompany("Devolutions Inc.")]
- [assembly: AssemblyCopyright("Copyright © ||YEAR||")]
-
- [assembly: AssemblyVersion("||VERSION||")]
-
- [assembly: ComVisible(false)]
- """
-
- assembly_manifest_android = assembly_manifest_android.replace("||YEAR||", str(datetime.datetime.now().year))
- assembly_manifest_android = assembly_manifest_android.replace("||VERSION||", version)
-
- if not os.path.exists("./Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Properties"):
- os.makedirs("./Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Properties")
-
- with open("./Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android/Properties/AssemblyInfo.cs","wb+") as filee:
- filee.write(assembly_manifest_android.encode("utf-8"))
-
- print("Building...")
-
- command= subprocess.Popen(["msbuild", "./Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android.sln", "/t:clean,restore,build", "/p:configuration=release"], stdout=subprocess.PIPE)
- output = command.stdout.read().decode('utf-8')
-
- print(output)
-
- if("FAILED" in output):
- exit(1)
-
- print("Generating ANDROID nuget...")
-
- command= subprocess.Popen(["nuget", "pack", "./Android/Devolutions.Crypto.Android/Devolutions.Crypto.Android.nuspec", "-Version", version, "-OutputDirectory", "./Android/Devolutions.Crypto.Android/package"], stdout=subprocess.PIPE)
- output = command.stdout.read().decode('utf-8')
-
- print(output)
-
- if("error" in output):
- exit(1)
-
-def build_dotnet_core(version, args):
- print("Generating DOTNET CORE nuget...")
-
- command= subprocess.Popen(["nuget", "pack", "./dotnet-core/Devolutions.Crypto.Core.nuspec", "-Version", version, "-OutputDirectory", "./dotnet-core/package"], stdout=subprocess.PIPE)
- output = command.stdout.read().decode('utf-8')
-
- print(output)
- if("error" in output):
- exit(1)
-
-if __name__=="__main__":
- main()
diff --git a/wrappers/csharp/nuget/Linux/Devolutions.Crypto.Linux.nuspec b/wrappers/csharp/nuget/Linux/Devolutions.Crypto.Linux.nuspec
deleted file mode 100644
index 56d3fbdd6..000000000
--- a/wrappers/csharp/nuget/Linux/Devolutions.Crypto.Linux.nuspec
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- Devolutions.Crypto.Linux
- $version$
- Devolutions Inc
- Devolutions Cryptographic Library For the .NET Framework, .NET Standard platforms for the Linux platform
- false
- Copyright 2022 @ Devolutions Inc
-
-
-
-
- Apache-2.0 OR MIT
- https://github.com/Devolutions/devolutions-crypto
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/Linux/Devolutions.Crypto.Linux.targets b/wrappers/csharp/nuget/Linux/Devolutions.Crypto.Linux.targets
deleted file mode 100644
index b67d68249..000000000
--- a/wrappers/csharp/nuget/Linux/Devolutions.Crypto.Linux.targets
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
- PreserveNewest
- libDevolutionsCrypto-x86.so
-
-
-
- PreserveNewest
- libDevolutionsCrypto-x64.so
-
-
-
- PreserveNewest
- libDevolutionsCrypto-arm64.so
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/Windows/Devolutions.Crypto.Windows.nuspec b/wrappers/csharp/nuget/Windows/Devolutions.Crypto.Windows.nuspec
deleted file mode 100644
index 3d3b4c989..000000000
--- a/wrappers/csharp/nuget/Windows/Devolutions.Crypto.Windows.nuspec
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
- Devolutions.Crypto.Windows
- $version$
- Devolutions Inc
- Devolutions Cryptographic Library For the .NET Framework, .NET Standard platforms for the Windows platform
- false
- Copyright 2022 @ Devolutions Inc
-
-
-
-
- Apache-2.0 OR MIT
- https://github.com/Devolutions/devolutions-crypto
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/Windows/Devolutions.Crypto.Windows.targets b/wrappers/csharp/nuget/Windows/Devolutions.Crypto.Windows.targets
deleted file mode 100644
index e050fea38..000000000
--- a/wrappers/csharp/nuget/Windows/Devolutions.Crypto.Windows.targets
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- PreserveNewest
- runtimes\win-x86\native\DevolutionsCrypto.dll
-
-
- PreserveNewest
- runtimes\win-x64\native\DevolutionsCrypto.dll
-
-
- PreserveNewest
- runtimes\win-arm64\native\DevolutionsCrypto.dll
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/dotnet-core/Devolutions.Crypto.Core.nuspec b/wrappers/csharp/nuget/dotnet-core/Devolutions.Crypto.Core.nuspec
index 23582ed58..3824477e6 100644
--- a/wrappers/csharp/nuget/dotnet-core/Devolutions.Crypto.Core.nuspec
+++ b/wrappers/csharp/nuget/dotnet-core/Devolutions.Crypto.Core.nuspec
@@ -35,13 +35,17 @@
-
-
+
+
-
-
-
+
+
+
+
+
+
+
diff --git a/wrappers/csharp/nuget/dotnet-core/Devolutions.Crypto.Core.props b/wrappers/csharp/nuget/dotnet-core/Devolutions.Crypto.Core.props
index 6a21fc314..75aaab009 100644
--- a/wrappers/csharp/nuget/dotnet-core/Devolutions.Crypto.Core.props
+++ b/wrappers/csharp/nuget/dotnet-core/Devolutions.Crypto.Core.props
@@ -2,7 +2,7 @@
-
+
Framework
diff --git a/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS.nuspec b/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS.nuspec
deleted file mode 100644
index cac6a4608..000000000
--- a/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS.nuspec
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
- Devolutions.Crypto.iOS
- $version$
- Devolutions Inc
- Devolutions Cryptographic Library For the Xamarin iOS platform
- false
- Copyright 2022 @ Devolutions Inc
- Apache-2.0 OR MIT
- https://github.com/Devolutions/devolutions-crypto
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS.sln b/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS.sln
deleted file mode 100644
index 354ceaac5..000000000
--- a/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS.sln
+++ /dev/null
@@ -1,22 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Devolutions.Crypto.iOS", "Devolutions.Crypto.iOS\Devolutions.Crypto.iOS.csproj", "{7D170006-A592-4F6B-A57C-59ECBC2B37B9}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Devolutions.Crypto.iOS.NuGet", "Devolutions.Crypto.iOS.NuGet", "{B4635D37-5FD7-45D2-8C4E-C78300BC29AE}"
- ProjectSection(SolutionItems) = preProject
- Devolutions.Crypto.nuspec = Devolutions.Crypto.nuspec
- EndProjectSection
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {7D170006-A592-4F6B-A57C-59ECBC2B37B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {7D170006-A592-4F6B-A57C-59ECBC2B37B9}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {7D170006-A592-4F6B-A57C-59ECBC2B37B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {7D170006-A592-4F6B-A57C-59ECBC2B37B9}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/ApiDefinition.cs b/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/ApiDefinition.cs
deleted file mode 100644
index 16803b1cd..000000000
--- a/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/ApiDefinition.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-
-using ObjCRuntime;
-using Foundation;
-using UIKit;
-
-namespace Devolutions.Crypto
-{
-
-}
-
diff --git a/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS.csproj b/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS.csproj
deleted file mode 100644
index ec57b5643..000000000
--- a/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS.csproj
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
- Debug
- AnyCPU
- {8FFB629D-F513-41CE-95D2-7ECE97B6EEEC};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- {7D170006-A592-4F6B-A57C-59ECBC2B37B9}
- {b6f3ff35-79b2-4f25-a2fc-60a7cf61013b}
- Library
- NativeLibrary
- Resources
- Devolutions.Crypto
-
-
- true
- full
- false
- bin\Debug
- __UNIFIED__;__MOBILE__;__IOS__;DEBUG;IOS
- prompt
- 4
- false
- true
-
-
- true
- pdbonly
- true
- bin\Release
- __UNIFIED__;__MOBILE__;__IOS__;IOS
- prompt
- 4
- false
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Framework
- True
- True
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Structs.cs b/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Structs.cs
deleted file mode 100644
index f89781067..000000000
--- a/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Structs.cs
+++ /dev/null
@@ -1,6 +0,0 @@
-using System;
-
-namespace Devolutions.Crypto
-{
-}
-
diff --git a/wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Info.plist b/wrappers/csharp/nuget/iOS/Info.plist
similarity index 100%
rename from wrappers/csharp/nuget/iOS/Devolutions.Crypto.iOS/Devolutions.Crypto.iOS/Info.plist
rename to wrappers/csharp/nuget/iOS/Info.plist
diff --git a/wrappers/csharp/nuget/macOS/Full/Devolutions.Crypto.Mac.Full.nuspec b/wrappers/csharp/nuget/macOS/Full/Devolutions.Crypto.Mac.Full.nuspec
deleted file mode 100644
index 0d7b50edc..000000000
--- a/wrappers/csharp/nuget/macOS/Full/Devolutions.Crypto.Mac.Full.nuspec
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- Devolutions.Crypto.Mac.Full
- $version$
- Devolutions Inc
- Devolutions Cryptographic Library For the .NET Framework, .NET Standard platforms for the Xamarin Mac Full platform
- false
- Copyright 2022 @ Devolutions Inc
-
-
-
-
- Apache-2.0 OR MIT
- https://github.com/Devolutions/devolutions-crypto
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/macOS/Full/Devolutions.Crypto.Mac.Full.targets b/wrappers/csharp/nuget/macOS/Full/Devolutions.Crypto.Mac.Full.targets
deleted file mode 100644
index 44e426483..000000000
--- a/wrappers/csharp/nuget/macOS/Full/Devolutions.Crypto.Mac.Full.targets
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
- PreserveNewest
- libDevolutionsCrypto-x64.dylib
-
-
-
-
- PreserveNewest
- libDevolutionsCrypto-arm64.dylib
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac.Modern.nuspec b/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac.Modern.nuspec
deleted file mode 100644
index 4638abc3f..000000000
--- a/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac.Modern.nuspec
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
- Devolutions.Crypto.Mac.Modern
- $version$
- Devolutions Inc
- Devolutions Cryptographic Library For the Xamarin Mac Modern platform
- false
- Copyright 2022 @ Devolutions Inc
- Apache-2.0 OR MIT
- https://github.com/Devolutions/devolutions-crypto
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac.sln b/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac.sln
deleted file mode 100644
index d181bd398..000000000
--- a/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac.sln
+++ /dev/null
@@ -1,22 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Devolutions.Crypto.Mac", "Devolutions.Crypto.Mac\Devolutions.Crypto.Mac.csproj", "{BAB5CF62-F020-46E4-B5F9-7D5D7347867B}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Devolutions.Crypto.Mac.NuGet", "Devolutions.Crypto.Mac.NuGet", "{6043CB13-1B2E-4EF3-8A11-81FCA66A119C}"
- ProjectSection(SolutionItems) = preProject
- Devolutions.Crypto.nuspec = Devolutions.Crypto.nuspec
- EndProjectSection
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {BAB5CF62-F020-46E4-B5F9-7D5D7347867B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {BAB5CF62-F020-46E4-B5F9-7D5D7347867B}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {BAB5CF62-F020-46E4-B5F9-7D5D7347867B}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {BAB5CF62-F020-46E4-B5F9-7D5D7347867B}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/ApiDefinition.cs b/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/ApiDefinition.cs
deleted file mode 100644
index 681aab89a..000000000
--- a/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/ApiDefinition.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-
-using AppKit;
-using Foundation;
-using ObjCRuntime;
-using CoreGraphics;
-
-namespace Devolutions.Crypto
-{
-
-}
diff --git a/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac.csproj b/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac.csproj
deleted file mode 100644
index ba016137f..000000000
--- a/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac.csproj
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
- Debug
- AnyCPU
- {BAB5CF62-F020-46E4-B5F9-7D5D7347867B}
- {810C163F-4746-4721-8B8E-88A3673A62EA};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Library
- Devolutions.Crypto.Mac
- Devolutions.Crypto
- Resources
-
-
- true
- full
- false
- bin\Debug
- __UNIFIED__;__MACOS__;DEBUG;MAC;MAC_MODERN;
- prompt
- 4
-
-
- true
- pdbonly
- true
- bin\Release
- __UNIFIED__;__MACOS__;MAC;MAC_MODERN;
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Dynamic
- True
- True
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/StructsAndEnums.cs b/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/StructsAndEnums.cs
deleted file mode 100644
index 256a07c23..000000000
--- a/wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/Devolutions.Crypto.Mac/StructsAndEnums.cs
+++ /dev/null
@@ -1,5 +0,0 @@
-using System;
-
-namespace Devolutions.Crypto
-{
-}
diff --git a/wrappers/csharp/src/Argon2Parameters.cs b/wrappers/csharp/src/Argon2Parameters.cs
index e57a41115..b318e537d 100644
--- a/wrappers/csharp/src/Argon2Parameters.cs
+++ b/wrappers/csharp/src/Argon2Parameters.cs
@@ -19,7 +19,7 @@ public Argon2Parameters()
///
/// Initializes a new instance of the class.
///
- /// Use the standard Argon2 parameters
+ /// Use the standard Argon2 parameters.
internal Argon2Parameters(bool defaultParameters = true)
{
if (defaultParameters)
diff --git a/wrappers/csharp/src/DevolutionsCryptoException.cs b/wrappers/csharp/src/DevolutionsCryptoException.cs
index 99aa3e72f..865760b7a 100644
--- a/wrappers/csharp/src/DevolutionsCryptoException.cs
+++ b/wrappers/csharp/src/DevolutionsCryptoException.cs
@@ -7,12 +7,24 @@ namespace Devolutions.Cryptography
///
public class DevolutionsCryptoException : Exception
{
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The managed error code.
+ /// The exception message. (Optional).
+ /// The managed exception. (Optional).
public DevolutionsCryptoException(ManagedError managedError, string message = null, Exception exception = null) : base(message)
{
this.ManagedError = managedError;
this.ManagedException = exception;
}
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The native error code.
+ /// The exception message. (Optional).
+ /// The managed exception. (Optional).
public DevolutionsCryptoException(NativeError nativeError, string message = null, Exception exception = null) : base(message)
{
this.NativeError = nativeError;
@@ -20,17 +32,17 @@ public DevolutionsCryptoException(NativeError nativeError, string message = null
}
///
- /// If not null, this describes the error that happenened on the managed side.
+ /// Gets or sets if not null, this describes the error that happenened on the managed side.
///
public ManagedError? ManagedError { get; set; }
///
- /// If an unknown exception happens this property will contain it..
+ /// Gets or sets if an unknown exception happens this property will contain it..
///
public Exception ManagedException { get; set; }
///
- /// Override to add additionnal info in the exception message.
+ /// Gets override to add additionnal info in the exception message.
///
public override string Message
{
@@ -41,12 +53,12 @@ public override string Message
}
///
- /// If not null, this describes the error that happenened on the native side (Rust).
+ /// Gets or sets if not null, this describes the error that happenened on the native side (Rust).
///
public NativeError? NativeError { get; set; }
///
- /// Override to add additionnal info in the exception stacktrace.
+ /// Gets override to add additionnal info in the exception stacktrace.
///
public override string StackTrace
{
diff --git a/wrappers/csharp/src/Enums.cs b/wrappers/csharp/src/Enums.cs
index 135cd0c79..ffd712fc6 100644
--- a/wrappers/csharp/src/Enums.cs
+++ b/wrappers/csharp/src/Enums.cs
@@ -41,7 +41,7 @@ public enum DataType
///
/// A wrapped signature
///
- Signature = 6
+ Signature = 6,
}
///
diff --git a/wrappers/csharp/src/ILegacyDecryptor.cs b/wrappers/csharp/src/ILegacyDecryptor.cs
index 9af8760d9..0385ff5ad 100644
--- a/wrappers/csharp/src/ILegacyDecryptor.cs
+++ b/wrappers/csharp/src/ILegacyDecryptor.cs
@@ -1,7 +1,16 @@
namespace Devolutions.Cryptography
{
+ ///
+ /// The interface for legacy decryptors.
+ ///
public interface ILegacyDecryptor
{
+ ///
+ /// Decrypt function for legacy decryptors.
+ ///
+ /// The data to decrypt.
+ /// The key to use for decryption.
+ /// Returns the decryption result.
byte[] Decrypt(byte[] data, byte[] key);
}
}
diff --git a/wrappers/csharp/src/ILegacyHasher.cs b/wrappers/csharp/src/ILegacyHasher.cs
index 238b685f3..bdd06a013 100644
--- a/wrappers/csharp/src/ILegacyHasher.cs
+++ b/wrappers/csharp/src/ILegacyHasher.cs
@@ -1,7 +1,16 @@
namespace Devolutions.Cryptography
{
+ ///
+ /// Interface for legacy hashers.
+ ///
public interface ILegacyHasher
{
+ ///
+ /// The method to verify passwords for legacy hashers.
+ ///
+ /// The password.
+ /// The hash to validate against.
+ /// The validation result.
bool VerifyPassword(byte[] password, byte[] hash);
}
}
diff --git a/wrappers/csharp/src/KeyPair.cs b/wrappers/csharp/src/KeyPair.cs
index dfd00e0f8..402fd9a75 100644
--- a/wrappers/csharp/src/KeyPair.cs
+++ b/wrappers/csharp/src/KeyPair.cs
@@ -8,12 +8,12 @@ namespace Devolutions.Cryptography
public class KeyPair
{
///
- /// The private key.
+ /// Gets or sets the private key.
///
public byte[] PrivateKey { get; set; }
///
- /// The private key as base 64 string.
+ /// Gets the private key as base 64 string.
///
public string PrivateKeyString
{
@@ -29,12 +29,12 @@ public string PrivateKeyString
}
///
- /// The public key.
+ /// Gets or sets the public key.
///
public byte[] PublicKey { get; set; }
///
- /// The public key key as base 64 string.
+ /// Gets the public key key as base 64 string.
///
public string PublicKeyString
{
diff --git a/wrappers/csharp/src/Managed.cs b/wrappers/csharp/src/Managed.cs
index 9cbf6d3d6..c2aafc95d 100644
--- a/wrappers/csharp/src/Managed.cs
+++ b/wrappers/csharp/src/Managed.cs
@@ -6,6 +6,9 @@ namespace Devolutions.Cryptography
using Devolutions.Cryptography.Argon2;
using Devolutions.Cryptography.Signature;
+ ///
+ /// Devolutions Crypto exposed API.
+ ///
public static class Managed
{
#if RDM
@@ -88,6 +91,7 @@ public static Argon2Parameters GetDefaultArgon2Parameters()
///
/// The data to encrypt.
/// The key to use for encryption.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a base 64 encoded string.
[Obsolete("This method has been deprecated. Use EncryptWithKeyAsBase64String instead.")]
@@ -101,6 +105,7 @@ public static string EncryptWithKeyAsString(string data, byte[] key, byte[] aad
///
/// The data to encrypt.
/// The key to use for encryption.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a base 64 encoded string.
public static string EncryptWithKeyAsBase64String(string data, byte[] key, byte[] aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
@@ -115,6 +120,7 @@ public static string EncryptWithKeyAsBase64String(string data, byte[] key, byte[
///
/// The data to encrypt.
/// The key to use for encryption.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a byte array.
public static byte[] EncryptWithKey(string data, byte[] key, byte[] aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
@@ -234,6 +240,7 @@ public static byte[] DerivePassword(string password, string salt, uint iteration
///
/// The data to decrypt.
/// The key to use for decryption.
+ /// Additional authenticated data. (Optional).
/// The fallback decryptor to use if the data is not from Devolutions Crypto.
/// Returns the decryption result in a byte array.
public static byte[] Decrypt(byte[] data, byte[] key, byte[] aad = null, ILegacyDecryptor legacyDecryptor = null)
@@ -277,6 +284,7 @@ public static byte[] Decrypt(byte[] data, byte[] key, byte[] aad = null, ILegacy
///
/// The data to decrypt.
/// The private key to use for decryption.
+ /// Additional authenticated data. (Optional).
/// Returns the decryption result in a byte array.
public static byte[] DecryptAsymmetric(byte[] data, byte[] privateKey, byte[] aad = null)
{
@@ -312,6 +320,7 @@ public static byte[] DecryptAsymmetric(byte[] data, byte[] privateKey, byte[] aa
///
/// The data to encrypt.
/// The key to use for encryption.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a base 64 encoded string.
[Obsolete("This method has been deprecated. Use EncryptWithKeyAsBase64String instead.")]
@@ -325,6 +334,7 @@ public static string EncryptWithKeyAsString(byte[] data, byte[] key, byte[] aad
///
/// The data to encrypt.
/// The key to use for encryption.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a base 64 encoded string.
public static string EncryptWithKeyAsBase64String(byte[] data, byte[] key, byte[] aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
@@ -339,6 +349,7 @@ public static string EncryptWithKeyAsBase64String(byte[] data, byte[] key, byte[
///
/// The data to encrypt.
/// The key to use for encryption.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a byte array.
public static byte[] EncryptWithKey(byte[] data, byte[] key, byte[] aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
@@ -354,6 +365,7 @@ public static byte[] EncryptWithKey(byte[] data, byte[] key, byte[] aad = null,
/// The data to encrypt.
/// The password to use for encryption.
/// The number of iterations used to derive the password. 10 000 Recommended by NIST.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a base 64 encoded string.
[Obsolete("This method has been deprecated. Use EncryptWithPasswordAsBase64String instead.")]
@@ -368,6 +380,7 @@ public static string EncryptWithPasswordAsString(byte[] data, string password, u
/// The data to encrypt.
/// The password to use for encryption.
/// The number of iterations used to derive the password. 10 000 Recommended by NIST.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a base 64 encoded string.
public static string EncryptWithPasswordAsBase64String(byte[] data, string password, uint iterations = 10000, byte[] aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
@@ -400,6 +413,7 @@ public static string EncryptWithPasswordAsBase64String(byte[] data, string passw
/// The data to encrypt.
/// The password to use for encryption.
/// The number of iterations used to derive the password. 10 000 Recommended by NIST.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a base 64 encoded string.
public static string EncryptBase64WithPasswordAsString(string b64data, string password, uint iterations = 10000, byte[] aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
@@ -413,6 +427,7 @@ public static string EncryptBase64WithPasswordAsString(string b64data, string pa
/// The data to encrypt.
/// The password to use for encryption.
/// The number of iterations used to derive the password. 10 000 Recommended by NIST.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a base 64 encoded string.
public static string EncryptBase64WithPasswordAsBase64String(
@@ -554,10 +569,10 @@ public static KeyPair GenerateKeyPair()
}
return new KeyPair()
- {
- PublicKey = publicKey,
- PrivateKey = privateKey,
- };
+ {
+ PublicKey = publicKey,
+ PrivateKey = privateKey,
+ };
}
///
@@ -565,6 +580,7 @@ public static KeyPair GenerateKeyPair()
///
/// The data to encrypt.
/// The key to use for encryption.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as byte array.
public static byte[] Encrypt(byte[] data, byte[] key, byte[] aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
@@ -692,6 +708,7 @@ public static SigningKeyPair GenerateSigningKeyPair(SignatureVersion version = S
///
/// The data to encrypt.
/// The public key to use for encryption.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as byte array.
public static byte[] EncryptAsymmetric(byte[] data, byte[] publicKey, byte[] aad = null, CipherTextVersion version = CIPHERTEXT_VERSION)
@@ -731,6 +748,7 @@ public static byte[] EncryptAsymmetric(byte[] data, byte[] publicKey, byte[] aad
///
/// The data to encrypt.
/// The password to use for encryption.
+ /// Additional authenticated data. (Optional).
/// The number of iterations used to derive the password. 10 000 Recommended by NIST.
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a base 64 encoded string.
@@ -746,6 +764,7 @@ public static string EncryptWithPasswordAsString(string data, string password, b
/// The data to encrypt.
/// The password to use for encryption.
/// The number of iterations used to derive the password. 10 000 Recommended by NIST.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a base 64 encoded string.
public static string EncryptWithPasswordAsBase64String(string data, string password, uint iterations = 10000, byte[] aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
@@ -778,6 +797,7 @@ public static string EncryptWithPasswordAsBase64String(string data, string passw
/// The data to encrypt.
/// The password to use for encryption.
/// The number of iterations used to derive the password. 10 000 Recommended by NIST.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a byte array.
public static byte[] EncryptWithPassword(byte[] data, string password, uint iterations = 10000, byte[] aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
@@ -810,6 +830,7 @@ public static byte[] EncryptWithPassword(byte[] data, string password, uint iter
/// The data to encrypt.
/// The password to use for encryption.
/// The number of iterations used to derive the password. 10 000 Recommended by NIST.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a byte array.
public static byte[] EncryptBase64WithPassword(string b64data, string password, uint iterations = 10000, byte[] aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
@@ -842,6 +863,7 @@ public static byte[] EncryptBase64WithPassword(string b64data, string password,
/// The data to encrypt.
/// The password to use for encryption.
/// The number of iterations used to derive the password. 10 000 Recommended by NIST.
+ /// Additional authenticated data. (Optional).
/// The cipher version to use. (Latest is recommended).
/// Returns the encryption result as a byte array.
public static byte[] EncryptWithPassword(string data, string password, uint iterations = 10000, byte[] aad = null, CipherTextVersion cipherTextVersion = CIPHERTEXT_VERSION)
@@ -873,6 +895,7 @@ public static byte[] EncryptWithPassword(string data, string password, uint iter
///
/// The base 64 string to decrypt.
/// The key to use for decryption.
+ /// Additional authenticated data. (Optional).
/// Returns the decryption result as a UTF8 encoded string.
[Obsolete("This method has been deprecated. Use DecryptWithKeyAsUtf8String instead.")]
public static string DecryptWithKeyAsString(string b64data, byte[] key, byte[] aad = null)
@@ -885,6 +908,7 @@ public static string DecryptWithKeyAsString(string b64data, byte[] key, byte[] a
///
/// The base 64 string to decrypt.
/// The key to use for decryption.
+ /// Additional authenticated data. (Optional).
/// The fallback decryptor to use if the data is not from Devolutions Crypto.
/// Returns the decryption result as a UTF8 encoded string.
public static string DecryptWithKeyAsUtf8String(string b64data, byte[] key, byte[] aad = null, ILegacyDecryptor legacyDecryptor = null)
@@ -899,6 +923,7 @@ public static string DecryptWithKeyAsUtf8String(string b64data, byte[] key, byte
///
/// The base 64 string to decrypt.
/// The key to use for decryption.
+ /// Additional authenticated data. (Optional).
/// The fallback decryptor to use if the data is not from Devolutions Crypto.
/// Returns the decryption result as a byte array.
public static byte[] DecryptWithKey(string b64data, byte[] key, byte[] aad = null, ILegacyDecryptor legacyDecryptor = null)
@@ -913,6 +938,7 @@ public static byte[] DecryptWithKey(string b64data, byte[] key, byte[] aad = nul
///
/// The data to decrypt.
/// The key to use for decryption.
+ /// Additional authenticated data. (Optional).
/// Returns the decryption result as a UTF8 encoded string.
[Obsolete("This method has been deprecated. Use DecryptWithKeyAsUtf8String instead.")]
public static string DecryptWithKeyAsString(byte[] data, byte[] key, byte[] aad = null)
@@ -925,6 +951,7 @@ public static string DecryptWithKeyAsString(byte[] data, byte[] key, byte[] aad
///
/// The data to decrypt.
/// The key to use for decryption.
+ /// Additional authenticated data. (Optional).
/// The fallback decryptor to use if the data is not from Devolutions Crypto.
/// Returns the decryption result as a UTF8 encoded string.
public static string DecryptWithKeyAsUtf8String(byte[] data, byte[] key, byte[] aad = null, ILegacyDecryptor legacyDecryptor = null)
@@ -939,6 +966,7 @@ public static string DecryptWithKeyAsUtf8String(byte[] data, byte[] key, byte[]
///
/// The data to decrypt.
/// The key to use for decryption.
+ /// Additional authenticated data. (Optional).
/// The fallback decryptor to use if the data is not from Devolutions Crypto.
/// Returns the decryption result as a byte array.
public static byte[] DecryptWithKey(byte[] data, byte[] key, byte[] aad = null, ILegacyDecryptor legacyDecryptor = null)
@@ -954,6 +982,7 @@ public static byte[] DecryptWithKey(byte[] data, byte[] key, byte[] aad = null,
/// The data to decrypt.
/// The password to use for decryption.
/// The number of iterations used to derive the password.
+ /// Additional authenticated data. (Optional).
/// Returns the decryption result as a UTF8 encoded string.
[Obsolete("This method has been deprecated. Use DecryptWithPasswordAsUtf8String instead.")]
public static string DecryptWithPasswordAsString(byte[] data, string password, uint iterations = 10000, byte[] aad = null)
@@ -967,6 +996,7 @@ public static string DecryptWithPasswordAsString(byte[] data, string password, u
/// The data to decrypt.
/// The password to use for decryption.
/// The number of iterations used to derive the password.
+ /// Additional authenticated data. (Optional).
/// Returns the decryption result as a UTF8 encoded string.
public static string DecryptWithPasswordAsUtf8String(byte[] data, string password, uint iterations = 10000, byte[] aad = null)
{
@@ -1016,6 +1046,7 @@ public static string DecryptWithPasswordAsUtf8String(byte[] data, string passwor
/// The data to decrypt.
/// The password to use for decryption.
/// The number of iterations used to derive the password.
+ /// Additional authenticated data. (Optional).
/// Returns the decryption result as a UTF8 encoded string.
[Obsolete("This method has been deprecated. Use DecryptWithPasswordAsUtf8String instead.")]
public static string DecryptWithPasswordAsString(string b64data, string password, uint iterations = 10000, byte[] aad = null)
@@ -1081,6 +1112,7 @@ public static byte[] JoinShares(byte[][] shares)
/// The data to decrypt.
/// The password to use for decryption.
/// The number of iterations used to derive the password.
+ /// Additional authenticated data. (Optional).
/// Returns the decryption result as a UTF8 encoded string.
public static string DecryptWithPasswordAsUtf8String(string b64data, string password, uint iterations = 10000, byte[] aad = null)
{
@@ -1124,6 +1156,13 @@ public static string DecryptWithPasswordAsUtf8String(string b64data, string pass
return Utils.ByteArrayToUtf8String(result);
}
+ ///
+ /// Generate shamir shared keys.
+ ///
+ /// Number of keys.
+ /// Number of keys required to recover the secret.
+ /// The secret length.
+ /// An array of shared keys.
public static byte[][] GenerateSharedKey(int nbShares, int threshold, int secretLength)
{
int sharesLength = (int)Native.GenerateSharedKeySizeNative((UIntPtr)secretLength);
@@ -1168,6 +1207,7 @@ public static byte[][] GenerateSharedKey(int nbShares, int threshold, int secret
/// The data to decrypt.
/// The password to use for decryption.
/// The number of iterations used to derive the password.
+ /// Additional authenticated data. (Optional).
/// Returns the decryption result as a byte array.
public static byte[] DecryptWithPassword(byte[] data, string password, uint iterations = 10000, byte[] aad = null)
{
@@ -1217,6 +1257,7 @@ public static byte[] DecryptWithPassword(byte[] data, string password, uint iter
/// The data to decrypt.
/// The password to use for decryption.
/// The number of iterations used to derive the password.
+ /// Additional authenticated data. (Optional).
/// Returns the decryption result as a byte array.
public static byte[] DecryptWithPassword(string b64data, string password, uint iterations = 10000, byte[] aad = null)
{
@@ -1260,6 +1301,10 @@ public static byte[] DecryptWithPassword(string b64data, string password, uint i
return result;
}
+ ///
+ /// Generates an API key.
+ ///
+ /// An API key formated as a Guid.
[Obsolete("This method has been deprecated. Use Managed.GenerateKey instead.")]
public static Guid GenerateAPIKey()
{
@@ -1279,6 +1324,7 @@ public static Guid GenerateAPIKey()
/// The data to decrypt.
/// The key to use for decryption.
/// The exception if an error occurs.
+ /// Additional authenticated data. (Optional).
/// Returns the decryption result in a byte array.
internal static byte[] DecryptSafe(byte[] data, byte[] key, out DevolutionsCryptoException exception, byte[] aad = null)
{
diff --git a/wrappers/csharp/src/Native.Core.cs b/wrappers/csharp/src/Native.Core.cs
index c33eebed0..449101c9e 100644
--- a/wrappers/csharp/src/Native.Core.cs
+++ b/wrappers/csharp/src/Native.Core.cs
@@ -1,6 +1,6 @@
// Xamarin and .NET Core bindings
-#if ANDROID || IOS || MAC_MODERN || DOTNET_CORE
+#if ANDROID || IOS || MACOS || DOTNET_CORE
namespace Devolutions.Cryptography
{
using System;
diff --git a/wrappers/csharp/src/Native.cs b/wrappers/csharp/src/Native.cs
index 42aacbeef..bfcbac916 100644
--- a/wrappers/csharp/src/Native.cs
+++ b/wrappers/csharp/src/Native.cs
@@ -1,3 +1,5 @@
+#pragma warning disable SA1600 // Elements should be documented
+
namespace Devolutions.Cryptography
{
using System;
@@ -22,7 +24,7 @@ public static partial class Native
private const string LibName86 = "DevolutionsCrypto";
#endif
-#if !ANDROID && !IOS && !MAC_MODERN && !WIN && !DOTNET_CORE
+#if !ANDROID && !IOS && !MACOS && !WIN && !DOTNET_CORE
private const string LibName64 = "DevolutionsCrypto-x64";
private const string LibName86 = "DevolutionsCrypto-x86";
@@ -70,7 +72,7 @@ static Native()
if (managedVersion != assemblyVersion || NativeVersion != nativeVersion)
{
- throw new DevolutionsCryptoException(ManagedError.IncompatibleVersion, "Non-matching versions - Managed: " + managedVersion + " Native: " + nativeVersion + " Supported : managed(" + ManagedVersion + ") native (" + NativeVersion + ")");
+ throw new DevolutionsCryptoException(ManagedError.IncompatibleVersion, "Non-matching versions - Managed: " + assemblyVersion + " Native: " + nativeVersion + " Supported : managed(" + ManagedVersion + ") native (" + NativeVersion + ")");
}
#endif
}
@@ -123,7 +125,7 @@ public static bool VerifyPassword(byte[] password, byte[] hash)
return Managed.VerifyPassword(password, hash);
}
-#if !ANDROID && !IOS && !MAC_MODERN && !DOTNET_CORE
+#if !ANDROID && !IOS && !MACOS && !DOTNET_CORE
internal static long GenerateSharedKeyNative(UIntPtr nbShares, UIntPtr threshold, UIntPtr size, IntPtr[] shares)
{
if (Environment.Is64BitProcess)
@@ -210,7 +212,7 @@ internal static long DeriveKeyArgon2Native(byte[] key, UIntPtr keyLength, byte[]
return DeriveKeyArgon2Native86(key, keyLength, argon2Parameters, argon2ParametersLength, result, resultLength);
}
- internal static long DeriveKeyPbkdf2Native(byte[] key, UIntPtr keyLength, byte[] salt, UIntPtr saltLength, System.UInt32 iterations, byte[] result, UIntPtr resultLength)
+ internal static long DeriveKeyPbkdf2Native(byte[] key, UIntPtr keyLength, byte[] salt, UIntPtr saltLength, uint iterations, byte[] result, UIntPtr resultLength)
{
if (Environment.Is64BitProcess)
{
@@ -670,7 +672,7 @@ private static extern long DeriveKeyPbkdf2Native86(
UIntPtr keyLength,
byte[] salt,
UIntPtr saltLength,
- System.UInt32 iterations,
+ uint iterations,
byte[] result,
UIntPtr resultLength);
@@ -680,7 +682,7 @@ private static extern long DeriveKeyPbkdf2Native64(
UIntPtr keyLength,
byte[] salt,
UIntPtr saltLength,
- System.UInt32 iterations,
+ uint iterations,
byte[] result,
UIntPtr resultLength);
@@ -919,4 +921,5 @@ private static extern long ScryptSimple64(
private static extern long ConstantTimeEquals64(byte[] x, UIntPtr xLength, byte[] y, UIntPtr yLength);
#endif
}
-}
\ No newline at end of file
+}
+#pragma warning restore SA1600 // Elements should be documented
\ No newline at end of file
diff --git a/wrappers/csharp/src/NativeError.cs b/wrappers/csharp/src/NativeError.cs
index 5db310ff4..532bc402f 100644
--- a/wrappers/csharp/src/NativeError.cs
+++ b/wrappers/csharp/src/NativeError.cs
@@ -1,5 +1,8 @@
namespace Devolutions.Cryptography
{
+ ///
+ /// Enum containing the definition of native errors.
+ ///
public enum NativeError
{
///
diff --git a/wrappers/csharp/src/SigningKeyPair.cs b/wrappers/csharp/src/SigningKeyPair.cs
index 0047afc62..e8a41f6b6 100644
--- a/wrappers/csharp/src/SigningKeyPair.cs
+++ b/wrappers/csharp/src/SigningKeyPair.cs
@@ -14,6 +14,9 @@ public SigningKeyPair()
{
}
+ ///
+ /// Gets or sets the raw key pair data.
+ ///
internal byte[] Payload { get; set; }
///
diff --git a/wrappers/csharp/src/Utils.cs b/wrappers/csharp/src/Utils.cs
index 21aef9c08..a7a79817e 100644
--- a/wrappers/csharp/src/Utils.cs
+++ b/wrappers/csharp/src/Utils.cs
@@ -5,7 +5,7 @@ namespace Devolutions.Cryptography
using System.Text;
///
- /// Useful functions from Devolutions Crypto
+ /// Useful functions from Devolutions Crypto.
///
public static class Utils
{
@@ -342,6 +342,11 @@ public static int GetEncodedLength(byte[] buffer)
///
/// This method is exposed for a very specific use case. Do not rely on it.
///
+ /// The password to hash.
+ /// The salt for the password hashing.
+ /// Iterations count.
+ /// Block size.
+ /// Parallelism factor.
/// The resulting hash.
public static string ScryptSimple(byte[] password, byte[] salt, byte logN, uint r, uint p)
{
diff --git a/wrappers/csharp/src/devolutions-crypto.csproj b/wrappers/csharp/src/devolutions-crypto.csproj
index 3386ed0d9..7abd70389 100644
--- a/wrappers/csharp/src/devolutions-crypto.csproj
+++ b/wrappers/csharp/src/devolutions-crypto.csproj
@@ -1,9 +1,10 @@
- netstandard2.1
+ netstandard2.0
devolutions_crypto
../stylecop.ruleset
+ Devolutions.Crypto
diff --git a/wrappers/csharp/tests/integration-tests/nugets/integration-tests.py b/wrappers/csharp/tests/integration-tests/nugets/integration-tests.py
deleted file mode 100644
index 9627efb2d..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/integration-tests.py
+++ /dev/null
@@ -1,157 +0,0 @@
-import argparse
-import platform
-import subprocess
-import sys
-import os
-
-# Current dotnet bugs that prevents this code from being cleanly made
-# https://github.com/NuGet/Home/issues/7413 can't specify url as a fallback with local source
-# output = get_output(["dotnet", "restore", "--source", "../Nugets", "--source", "https://www.nuget.org/api/v3/", "--verbosity", "normal", "--no-cache", "--force"], cwd="./dotnet-framework")
-# --no-cache doesn't work https://github.com/NuGet/Home/issues/5619
-
-def get_output(args, cwd=None):
- try:
- result = subprocess.check_output(args, cwd=cwd, stderr=subprocess.STDOUT).decode(sys.stdout.encoding).strip()
- return result
- except subprocess.CalledProcessError as exc:
- result = exc.output.decode(sys.stdout.encoding).strip()
- return result
-
-def main():
- platforms = {
- "ios": test_ios,
- }
-
- parser = argparse.ArgumentParser()
-
- parser.add_argument("-p", "--platform", default=platform.system().lower(),
- choices=platforms.keys(),
- help="The platform to build for.")
-
- args = parser.parse_args()
-
- script_dir = os.path.dirname(os.path.abspath(__file__))
- print("script directory :")
- print(script_dir)
-
- os.chdir(script_dir)
-
- version = ""
-
- with open('../../../config.txt', 'r') as filee:
- data=filee.read()
- version = data.split("version = \"")[1].split("\"", 1)[0]
-
- print("Current Devolutions Crypto Version :")
- print(version)
- print("====================================================================")
-
- platforms.get(args.platform)(script_dir, version, args)
-
-def test_ios(script_dir, version, args):
-
- # this test is mostly done to verify that the lib still works with others rust library.
- print("Building Rust Static Lib")
- print("==========================================================================")
- output = get_output(["cargo", "build", "--target", "x86_64-apple-ios", "--release"], cwd="./xamarin-ios/static-rust-lib")
- print(output)
-
-
- print("Nuget Cache Clear")
- print("==========================================================================")
-
- # CLEAN
- output = get_output(["dotnet", "nuget", "locals", "--clear", "all"], cwd="./xamarin-ios")
- print(output)
-
- print("Remove Local NuGet Source")
- print("==========================================================================")
- output = get_output(["nuget", "sources", "remove", "-Name", "LOCALDEVOCRYPTO"])
- print(output)
-
- print("Nuget Remove Nuget.org Devolutions.Crypto Package")
- print("==========================================================================")
- output = get_output(["dotnet", "remove", "package", "Devolutions.Crypto.iOS"], cwd="./xamarin-ios")
- print(output)
-
- # Restore
- print("Nuget Restore Global Packages")
- print("==========================================================================")
- output = get_output(["dotnet", "restore", "./xamarin-ios", "--verbosity", "normal"])
- print(output)
-
- print("Add Local NuGet Source")
- print("==========================================================================")
- print(os.path.join(script_dir, "Nugets"))
- output = get_output(["nuget", "sources", "add", "-Name", "LOCALDEVOCRYPTO", "-Source", os.path.join(script_dir, "Nugets")])
- print(output)
-
- print("Installing Nuget Package in Nugets Source")
- print("==========================================================================")
-
- output = get_output(["nuget", "add", "./Nugets/Devolutions.Crypto.iOS." + version + ".nupkg", "-Source", "LOCALDEVOCRYPTO"])
- print(output)
-
- # Small hack to fix broken xamarin support
- # If a PackageReference element is not present in the csproj
- # The dotnet add package will fail with an unsupported project error.
- print("hack csproj")
-
- fixdata = """
-
-
-
-
-
- """
-
- filedata = ""
- with open('./xamarin-ios/xamarin-ios.csproj','r') as file:
- filedata = file.read()
- filedata = filedata.replace("""
- """, fixdata)
-
- with open('./xamarin-ios/xamarin-ios.csproj','w') as file:
- file.write(filedata)
-
- print("Nuget Add Package Devolutions Crypto to project")
- print("==========================================================================")
- output = get_output(["dotnet", "add", "package", "Devolutions.Crypto.iOS", "--source", "../LOCALDEVOCRYPTO", "--version", version], cwd="./xamarin-ios")
- print(output)
-
- # Remove the package reference
- # It will leave the one that was added using dotnet add packge
- filedata = ""
- with open('./xamarin-ios/xamarin-ios.csproj','r') as file:
- filedata = file.read()
- filedata = filedata.replace("""""", "")
-
- with open('./xamarin-ios/xamarin-ios.csproj','w') as file:
- file.write(filedata)
-
-
- print("Building Unit tests for XAMARIN IOS")
- print("=========================================================================")
-
- # issue with duplicate symbols only happen in Release due to LLVM optimizing compiler
- output = get_output(["msbuild", "./xamarin-ios/xamarin-ios.csproj" , "/t:clean,build", "/p:configuration=Release;platform=iPhoneSimulator"])
- print(output)
- if("FAILED" in output):
- exit(1)
-
- print("XAMARIN IOS UNIT TEST")
- print("=========================================================================")
-
-
- print("Running tests")
- output = get_output(["sh", "./xamarin-ios/test.sh"])
- print(output)
-
- with open("./xamarin-ios/test_results.xml", "r") as testResult:
- output = testResult.read()
- print(output)
- if "success=\"False\"" in output:
- exit(1)
-
-if __name__=="__main__":
- main()
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Entitlements.plist b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Entitlements.plist
deleted file mode 100644
index 9ae599370..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Entitlements.plist
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Info.plist b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Info.plist
deleted file mode 100644
index e11674eaa..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Info.plist
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
- CFBundleName
- xamarin-ios
- CFBundleIdentifier
- com.companyname.xamarin-ios
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1.0
- LSRequiresIPhoneOS
-
- MinimumOSVersion
- 13.2
- UIDeviceFamily
-
- 1
- 2
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UILaunchStoryboardName
- LaunchScreen
- NSAppTransportSecurity
-
- NSAllowsArbitraryLoads
-
-
-
-
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/IntegrationTests.cs b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/IntegrationTests.cs
deleted file mode 100644
index 7e274da45..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/IntegrationTests.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#pragma warning disable SA1600 // Elements should be documented
-
-#if DOTNET_FRAMEWORK
-#pragma warning disable SA1300 // Element should begin with upper-case letter
-namespace dotnet_framework
-#pragma warning restore SA1300 // Element should begin with upper-case letter
-#endif
-#if DOTNET_CORE
-namespace dotnet_core
-#endif
-#if XAMARIN_MAC_FULL
-namespace xamarin_mac_full
-#endif
-#if XAMARIN_MAC_MODERN
-namespace xamarin_mac_modern
-#endif
-#if XAMARIN_IOS
-namespace xamarin_ios
-#endif
-#if XAMARIN_ANDROID
-namespace xamarin_android
-#endif
-{
-#if XAMARIN_MAC_FULL || XAMARIN_MAC_MODERN || XAMARIN_IOS || XAMARIN_ANDROID
- using NUnit.Framework;
- using TestClassAttribute = NUnit.Framework.TestFixtureAttribute;
- using TestMethodAttribute = NUnit.Framework.TestCaseAttribute;
-#else
- using Microsoft.VisualStudio.TestTools.UnitTesting;
-#endif
- using System;
- using System.Text;
-
- using Devolutions.Cryptography;
- using Devolutions.Cryptography.Argon2;
- using System.Runtime.InteropServices;
-
- [TestClass]
- public class IntegrationTests
- {
- [TestMethod]
- public void Tests()
- {
- string data = Devolutions.Cryptography.Managed.EncryptWithPasswordAsString("test", "tests");
- Console.WriteLine(data);
-
- Assert.IsTrue(!string.IsNullOrEmpty(data));
-
- IntPtr ptr = foo();
-
- Assert.IsTrue(ptr != IntPtr.Zero);
- }
-
- private const string LibName = "__Internal";
-
- [DllImport(LibName, EntryPoint = "foo", CallingConvention = CallingConvention.Cdecl)]
- internal static extern IntPtr foo();
-
- }
-}
\ No newline at end of file
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Main.cs b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Main.cs
deleted file mode 100644
index 5c630a646..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Main.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Linq;
-using System.Collections.Generic;
-
-using Foundation;
-using UIKit;
-
-namespace xamarin_ios
-{
- public class Application
- {
- // This is the main entry point of the application.
- static void Main(string[] args)
- {
- // if you want to use a different Application Delegate class from "UnitTestAppDelegate"
- // you can specify it here.
- UIApplication.Main(args, null, "UnitTestAppDelegate");
- }
- }
-}
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Touch.Server.exe b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Touch.Server.exe
deleted file mode 100644
index f2eeda312..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/Touch.Server.exe
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f7674001b74b9ee39a3526efd82355e5fcc2ddb8eff10eccf8f0a6d285167f18
-size 39424
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/UnitTestAppDelegate.cs b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/UnitTestAppDelegate.cs
deleted file mode 100644
index f4bee0131..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/UnitTestAppDelegate.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-using System;
-using System.Linq;
-using System.Collections.Generic;
-
-using Foundation;
-using UIKit;
-using MonoTouch.NUnit.UI;
-
-namespace xamarin_ios
-{
- // The UIApplicationDelegate for the application. This class is responsible for launching the
- // User Interface of the application, as well as listening (and optionally responding) to
- // application events from iOS.
- [Register("UnitTestAppDelegate")]
- public partial class UnitTestAppDelegate : UIApplicationDelegate
- {
- // class-level declarations
- UIWindow window;
- TouchRunner runner;
-
- //
- // This method is invoked when the application has loaded and is ready to run. In this
- // method you should instantiate the window, load the UI into it and then make the window
- // visible.
- //
- // You have 17 seconds to return from this method, or iOS will terminate your application.
- //
- public override bool FinishedLaunching(UIApplication app, NSDictionary options)
- {
- // create a new window instance based on the screen size
- window = new UIWindow(UIScreen.MainScreen.Bounds);
- runner = new TouchRunner(window);
-
- // register every tests included in the main application/assembly
- runner.Add(System.Reflection.Assembly.GetExecutingAssembly());
-
- window.RootViewController = new UINavigationController(runner.GetViewController());
-
- // make the window visible
- window.MakeKeyAndVisible();
-
- return true;
- }
- }
-}
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/.gitignore b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/.gitignore
deleted file mode 100644
index a6f89c2da..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/target/
\ No newline at end of file
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/Cargo.lock b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/Cargo.lock
deleted file mode 100644
index 062021857..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/Cargo.lock
+++ /dev/null
@@ -1,5 +0,0 @@
-# This file is automatically @generated by Cargo.
-# It is not intended for manual editing.
-[[package]]
-name = "static-rust-lib"
-version = "0.1.0"
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/Cargo.toml b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/Cargo.toml
deleted file mode 100644
index a41ccefde..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/Cargo.toml
+++ /dev/null
@@ -1,17 +0,0 @@
-[package]
-name = "static-rust-lib"
-version = "0.1.0"
-authors = ["Mathieu Morrissette "]
-edition = "2018"
-
-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
-[workspace]
-
-[lib]
-name="static_rust_lib"
-crate-type = ["staticlib"]
-
-[dependencies]
-
-[profile.release]
-lto = true
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/src/lib.rs b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/src/lib.rs
deleted file mode 100644
index 3a101aa9d..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/static-rust-lib/src/lib.rs
+++ /dev/null
@@ -1,4 +0,0 @@
-#[no_mangle]
-pub extern "C" fn foo() -> Box {
- Box::new(5)
-}
\ No newline at end of file
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/test.sh b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/test.sh
deleted file mode 100644
index 92ef3e57c..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/test.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-runtime=$(xcrun simctl list runtimes | grep iOS | tail -1 | cut -d ")" -f 2 | cut -d " " -f 3)
-deviceType=$(xcrun simctl list devicetypes | grep iPhone | cut -d "(" -f 2 | cut -d ")" -f 1 | grep com | tail -1)
-echo $runtime
-echo $deviceType
-export MONOTOUCH_ROOT=/Library/Frameworks/Xamarin.iOS.framework/Versions/Current
-
-# touch server source https://github.com/prashantvc/Touch.Server/
-
-currentDir=$(/bin/pwd)
-
-echo $currentDir
-
-TEST_RESULT="${currentDir}/xamarin-ios/test_results.xml"
-
-echo 'Delete test result'
-
-rm -rf $TEST_RESULT
-mono --debug ./xamarin-ios/Touch.Server.exe \
---launchsim "${currentDir}/xamarin-ios/bin/iPhoneSimulator/Release/xamarin-ios.app" \
--autoexit \
--skipheader \
--logfile=$TEST_RESULT \
---verbose \
---device=":v2:runtime=${runtime},devicetype=${deviceType}"
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/test_results.xml b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/test_results.xml
deleted file mode 100644
index 5d1e445ef..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/test_results.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/xamarin-ios.csproj b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/xamarin-ios.csproj
deleted file mode 100644
index 7edfcd089..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/xamarin-ios.csproj
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-
- Debug
- iPhoneSimulator
- {DBD54C31-6F32-43A8-B09E-D21430B61170}
- {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Exe
- xamarin_ios
- xamarin-ios
- Resources
- win;win-x86;win-x64
- win;win-x86;win-x64
-
-
- true
- full
- false
- bin\iPhoneSimulator\Debug
- __IOS__;__MOBILE__;__UNIFIED__;DEBUG;XAMARIN_IOS
- prompt
- 4
- iPhone Developer
- true
- true
- true
- 14334
- None
- x86_64
- NSUrlSessionHandler
- --setenv=NUNIT_ENABLE_XML_OUTPUT=true --setenv=NUNIT_SKIP_LOG_HEADER=true
-
-
- pdbonly
- true
- bin\iPhone\Release
- __IOS__;__MOBILE__;__UNIFIED__;XAMARIN_IOS
- prompt
- 4
- iPhone Developer
- true
- true
- Entitlements.plist
- SdkOnly
- ARM64
- NSUrlSessionHandler
-
-
- true
- bin\iPhoneSimulator\Release
- __IOS__;__MOBILE__;__UNIFIED__;XAMARIN_IOS
- prompt
- 4
- iPhone Developer
- true
- None
- x86_64
- NSUrlSessionHandler
- --setenv=NUNIT_ENABLE_XML_OUTPUT=true --setenv=NUNIT_SKIP_LOG_HEADER=true
-
-
- true
- full
- false
- bin\iPhone\Debug
- __IOS__;__MOBILE__;__UNIFIED__;DEBUG;XAMARIN_IOS
- prompt
- 4
- iPhone Developer
- true
- true
- true
- true
- true
- Entitlements.plist
- 10273
- SdkOnly
- ARM64
- NSUrlSessionHandler
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Static
- False
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/xamarin-ios.sln b/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/xamarin-ios.sln
deleted file mode 100644
index 1a2feb028..000000000
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/xamarin-ios.sln
+++ /dev/null
@@ -1,23 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xamarin-ios", "xamarin-ios.csproj", "{DBD54C31-6F32-43A8-B09E-D21430B61170}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|iPhoneSimulator = Debug|iPhoneSimulator
- Release|iPhone = Release|iPhone
- Release|iPhoneSimulator = Release|iPhoneSimulator
- Debug|iPhone = Debug|iPhone
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Release|iPhone.ActiveCfg = Release|iPhone
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Release|iPhone.Build.0 = Release|iPhone
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Debug|iPhone.ActiveCfg = Debug|iPhone
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Debug|iPhone.Build.0 = Debug|iPhone
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/Conformity.cs b/wrappers/csharp/tests/unit-tests/Conformity.cs
index 6085cf3dc..f048ac8f8 100644
--- a/wrappers/csharp/tests/unit-tests/Conformity.cs
+++ b/wrappers/csharp/tests/unit-tests/Conformity.cs
@@ -2,13 +2,8 @@
namespace Devolutions.Crypto.Tests
{
-#if XAMARIN_MAC_FULL || XAMARIN_MAC_MODERN || XAMARIN_IOS || XAMARIN_ANDROID
- using NUnit.Framework;
- using TestClassAttribute = NUnit.Framework.TestFixtureAttribute;
- using TestMethodAttribute = NUnit.Framework.TestCaseAttribute;
-#else
using Microsoft.VisualStudio.TestTools.UnitTesting;
-#endif
+
using System;
using System.Text;
diff --git a/wrappers/csharp/tests/unit-tests/TestArgon2Parameters.cs b/wrappers/csharp/tests/unit-tests/TestArgon2Parameters.cs
index 553efd694..83ba5826b 100644
--- a/wrappers/csharp/tests/unit-tests/TestArgon2Parameters.cs
+++ b/wrappers/csharp/tests/unit-tests/TestArgon2Parameters.cs
@@ -6,14 +6,8 @@ namespace Devolutions.Crypto.Tests
using System.IO;
using Devolutions.Cryptography.Argon2;
-
-#if XAMARIN_MAC_FULL || XAMARIN_MAC_MODERN || XAMARIN_IOS || XAMARIN_ANDROID
- using NUnit.Framework;
- using TestClassAttribute = NUnit.Framework.TestFixtureAttribute;
- using TestMethodAttribute = NUnit.Framework.TestCaseAttribute;
-#else
+
using Microsoft.VisualStudio.TestTools.UnitTesting;
-#endif
[TestClass]
public class TestArgon2Parameters
diff --git a/wrappers/csharp/tests/unit-tests/TestLegacy.cs b/wrappers/csharp/tests/unit-tests/TestLegacy.cs
index bdd47c22c..a62f996ac 100644
--- a/wrappers/csharp/tests/unit-tests/TestLegacy.cs
+++ b/wrappers/csharp/tests/unit-tests/TestLegacy.cs
@@ -9,13 +9,7 @@ namespace Devolutions.Crypto.Tests
using Devolutions.Cryptography;
-#if XAMARIN_MAC_FULL || XAMARIN_MAC_MODERN || XAMARIN_IOS || XAMARIN_ANDROID
- using NUnit.Framework;
- using TestClassAttribute = NUnit.Framework.TestFixtureAttribute;
- using TestMethodAttribute = NUnit.Framework.TestCaseAttribute;
-#else
using Microsoft.VisualStudio.TestTools.UnitTesting;
-#endif
[TestClass]
public class TestLegacy
diff --git a/wrappers/csharp/tests/unit-tests/TestManaged.cs b/wrappers/csharp/tests/unit-tests/TestManaged.cs
index ae6395d01..a9fd4c089 100644
--- a/wrappers/csharp/tests/unit-tests/TestManaged.cs
+++ b/wrappers/csharp/tests/unit-tests/TestManaged.cs
@@ -1,13 +1,8 @@
#pragma warning disable SA1600 // Elements should be documented
namespace Devolutions.Crypto.Tests
{
-#if XAMARIN_MAC_FULL || XAMARIN_MAC_MODERN || XAMARIN_IOS || XAMARIN_ANDROID
- using NUnit.Framework;
- using TestClassAttribute = NUnit.Framework.TestFixtureAttribute;
- using TestMethodAttribute = NUnit.Framework.TestCaseAttribute;
-#else
using Microsoft.VisualStudio.TestTools.UnitTesting;
-#endif
+
using System;
using System.Text;
@@ -79,11 +74,19 @@ public void DecryptWithPassword2()
[TestMethod]
public void DecryptWithPassword2_5()
{
+ try
+ {
string encrytedDataAsBase64 = "DQwCAAAAAgDutPWBLPHG0+ocNw+Yzs6xygGOeOlNPOAjbYDdbJKjPRnEP8HuDN7Y3h3dCoH81Szf3tCf3mNf";
string password = "testPa$$";
byte[] decryptResult = Managed.DecryptWithPassword(encrytedDataAsBase64, password);
string decryptResultString = Utils.ByteArrayToUtf8String(decryptResult);
Assert.AreEqual(decryptResultString, "test Ciph3rtext");
+ }
+ catch(Exception ex)
+ {
+ Console.WriteLine(ex.InnerException?.Message);
+ Console.WriteLine(ex.InnerException?.StackTrace);
+ }
}
[TestMethod]
diff --git a/wrappers/csharp/tests/unit-tests/TestNative.cs b/wrappers/csharp/tests/unit-tests/TestNative.cs
index e94228054..215a3eb91 100644
--- a/wrappers/csharp/tests/unit-tests/TestNative.cs
+++ b/wrappers/csharp/tests/unit-tests/TestNative.cs
@@ -3,13 +3,7 @@ namespace Devolutions.Crypto.Tests
using Devolutions.Cryptography;
using Devolutions.Cryptography.Argon2;
-#if XAMARIN_MAC_FULL || XAMARIN_MAC_MODERN || XAMARIN_IOS || XAMARIN_ANDROID
- using NUnit.Framework;
- using TestClassAttribute = NUnit.Framework.TestFixtureAttribute;
- using TestMethodAttribute = NUnit.Framework.TestCaseAttribute;
-#else
using Microsoft.VisualStudio.TestTools.UnitTesting;
-#endif
[TestClass]
public class TestNative
diff --git a/wrappers/csharp/tests/unit-tests/TestUtils.cs b/wrappers/csharp/tests/unit-tests/TestUtils.cs
index d0db21cdc..83c725971 100644
--- a/wrappers/csharp/tests/unit-tests/TestUtils.cs
+++ b/wrappers/csharp/tests/unit-tests/TestUtils.cs
@@ -2,13 +2,8 @@
namespace Devolutions.Crypto.Tests
{
-#if XAMARIN_MAC_FULL || XAMARIN_MAC_MODERN || XAMARIN_IOS || XAMARIN_ANDROID
- using NUnit.Framework;
- using TestClassAttribute = NUnit.Framework.TestFixtureAttribute;
- using TestMethodAttribute = NUnit.Framework.TestCaseAttribute;
-#else
using Microsoft.VisualStudio.TestTools.UnitTesting;
-#endif
+
using System;
using System.IO;
diff --git a/wrappers/csharp/tests/unit-tests/manual/dotnet-core/devolutions-crypto/devolutions-crypto.csproj b/wrappers/csharp/tests/unit-tests/manual/dotnet-core/devolutions-crypto/devolutions-crypto.csproj
deleted file mode 100644
index ea575a55f..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/dotnet-core/devolutions-crypto/devolutions-crypto.csproj
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
- netstandard2.0
- devolutions_crypto
- false
- false
-
-
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/manual/dotnet-core/dotnet-core.csproj b/wrappers/csharp/tests/unit-tests/manual/dotnet-core/dotnet-core.csproj
deleted file mode 100644
index aa7586c95..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/dotnet-core/dotnet-core.csproj
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
- netcoreapp3.1
- dotnet_core
- ../../../../stylecop.ruleset
- false
- false
- false
-
-
-
-
- TRACE;DOTNET_CORE
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- runtime; build; native; contentfiles; analyzers; buildtransitive
- all
-
-
- runtime; build; native; contentfiles; analyzers; buildtransitive
- all
-
-
-
-
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/manual/dotnet-core/dotnet-core.sln b/wrappers/csharp/tests/unit-tests/manual/dotnet-core/dotnet-core.sln
deleted file mode 100644
index 26323bdc7..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/dotnet-core/dotnet-core.sln
+++ /dev/null
@@ -1,51 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 17
-VisualStudioVersion = 17.1.32421.90
-MinimumVisualStudioVersion = 15.0.26124.0
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-core", "dotnet-core.csproj", "{DE2B15FD-02C0-42C4-BECD-802083E53934}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "devolutions-crypto", "devolutions-crypto\devolutions-crypto.csproj", "{68627F91-00FC-42AA-9A0E-613AF79CB3B3}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
- Release|Any CPU = Release|Any CPU
- Release|x64 = Release|x64
- Release|x86 = Release|x86
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Debug|x64.ActiveCfg = Debug|Any CPU
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Debug|x64.Build.0 = Debug|Any CPU
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Debug|x86.ActiveCfg = Debug|Any CPU
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Debug|x86.Build.0 = Debug|Any CPU
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Release|Any CPU.Build.0 = Release|Any CPU
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Release|x64.ActiveCfg = Release|Any CPU
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Release|x64.Build.0 = Release|Any CPU
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Release|x86.ActiveCfg = Release|Any CPU
- {DE2B15FD-02C0-42C4-BECD-802083E53934}.Release|x86.Build.0 = Release|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Debug|x64.ActiveCfg = Debug|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Debug|x64.Build.0 = Debug|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Debug|x86.ActiveCfg = Debug|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Debug|x86.Build.0 = Debug|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Release|Any CPU.Build.0 = Release|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Release|x64.ActiveCfg = Release|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Release|x64.Build.0 = Release|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Release|x86.ActiveCfg = Release|Any CPU
- {68627F91-00FC-42AA-9A0E-613AF79CB3B3}.Release|x86.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {36721C0D-95C6-45A5-AF50-04394B90A2A9}
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/devolutions-crypto/devolutions-crypto.csproj b/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/devolutions-crypto/devolutions-crypto.csproj
deleted file mode 100644
index 240e6e924..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/devolutions-crypto/devolutions-crypto.csproj
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {5EF8A69D-78AD-40DA-8F0F-2A84557B090C}
- Library
- Properties
- Devolutions.Crypto
- Devolutions.Crypto
- v4.7.2
- true
- 512
- true
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
- devolutions-crypto.ruleset
- false
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
- devolutions-crypto.ruleset
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2.9.6
- runtime; build; native; contentfiles; analyzers; buildtransitive
- all
-
-
- runtime; build; native; contentfiles; analyzers; buildtransitive
- all
-
-
- 1.1.118
- runtime; build; native; contentfiles; analyzers; buildtransitive
- all
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/devolutions-crypto/devolutions-crypto.ruleset b/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/devolutions-crypto/devolutions-crypto.ruleset
deleted file mode 100644
index 49df04208..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/devolutions-crypto/devolutions-crypto.ruleset
+++ /dev/null
@@ -1,95 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/dotnet-framework.csproj b/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/dotnet-framework.csproj
deleted file mode 100644
index 9a6c98d97..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/dotnet-framework.csproj
+++ /dev/null
@@ -1,122 +0,0 @@
-
-
-
-
-
- Debug
- AnyCPU
- {C948B6CD-A0DC-4CD3-B0EC-54B030A71432}
- Library
- Properties
- dotnet_framework
- dotnet-framework
- v4.7.2
- win;win-x86;win-x64
- win;win-x86;win-x64
- v4.7.2
- true
- 512
- {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 15.0
- $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
- $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages
- False
- UnitTest
-
-
-
-
- true
- full
- false
- bin\Debug\
- TRACE;DEBUG;DOTNET_FRAMEWORK;
- prompt
- 4
- x86
- dotnet-framework.ruleset
- false
-
-
- pdbonly
- true
- bin\Release\
- TRACE;DOTNET_FRAMEWORK
- prompt
- 4
- dotnet-framework.ruleset
- false
-
-
- true
- bin\x64\Debug\
- DEBUG;TRACE;DOTNET_FRAMEWORK
- full
- x64
- 7.3
- prompt
- dotnet-framework.ruleset
- false
-
-
- bin\x64\Release\
- TRACE;DOTNET_FRAMEWORK
- true
- pdbonly
- x64
- 7.3
- prompt
- dotnet-framework.ruleset
- false
-
-
-
- Conformity.cs
-
-
- TestArgon2Parameters.cs
-
-
- TestClasses.cs
-
-
- TestData.cs
-
-
-
-
-
-
-
-
-
- 1.1.118
- runtime; build; native; contentfiles; analyzers; buildtransitive
- all
-
-
-
-
- DevolutionsCrypto-x64.dll
- Always
-
-
- DevolutionsCrypto-x86.dll
- Always
-
-
-
-
- {5ef8a69d-78ad-40da-8f0f-2a84557b090c}
- Devolutions.Crypto
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/dotnet-framework.ruleset b/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/dotnet-framework.ruleset
deleted file mode 100644
index 49c6f2926..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/dotnet-framework.ruleset
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/dotnet-framework.sln b/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/dotnet-framework.sln
deleted file mode 100644
index a2baab497..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/dotnet-framework/dotnet-framework.sln
+++ /dev/null
@@ -1,41 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.29806.167
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dotnet-framework", "dotnet-framework.csproj", "{C948B6CD-A0DC-4CD3-B0EC-54B030A71432}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "devolutions-crypto", ".\devolutions-crypto\devolutions-crypto.csproj", "{5EF8A69D-78AD-40DA-8F0F-2A84557B090C}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Debug|x64 = Debug|x64
- Release|Any CPU = Release|Any CPU
- Release|x64 = Release|x64
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {C948B6CD-A0DC-4CD3-B0EC-54B030A71432}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {C948B6CD-A0DC-4CD3-B0EC-54B030A71432}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {C948B6CD-A0DC-4CD3-B0EC-54B030A71432}.Debug|x64.ActiveCfg = Debug|x64
- {C948B6CD-A0DC-4CD3-B0EC-54B030A71432}.Debug|x64.Build.0 = Debug|x64
- {C948B6CD-A0DC-4CD3-B0EC-54B030A71432}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {C948B6CD-A0DC-4CD3-B0EC-54B030A71432}.Release|Any CPU.Build.0 = Release|Any CPU
- {C948B6CD-A0DC-4CD3-B0EC-54B030A71432}.Release|x64.ActiveCfg = Release|x64
- {C948B6CD-A0DC-4CD3-B0EC-54B030A71432}.Release|x64.Build.0 = Release|x64
- {5EF8A69D-78AD-40DA-8F0F-2A84557B090C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {5EF8A69D-78AD-40DA-8F0F-2A84557B090C}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {5EF8A69D-78AD-40DA-8F0F-2A84557B090C}.Debug|x64.ActiveCfg = Debug|Any CPU
- {5EF8A69D-78AD-40DA-8F0F-2A84557B090C}.Debug|x64.Build.0 = Debug|Any CPU
- {5EF8A69D-78AD-40DA-8F0F-2A84557B090C}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {5EF8A69D-78AD-40DA-8F0F-2A84557B090C}.Release|Any CPU.Build.0 = Release|Any CPU
- {5EF8A69D-78AD-40DA-8F0F-2A84557B090C}.Release|x64.ActiveCfg = Release|Any CPU
- {5EF8A69D-78AD-40DA-8F0F-2A84557B090C}.Release|x64.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {CFBD5DD7-62EA-48AF-9697-86AD416C3D8F}
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Properties/AssemblyInfo.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Properties/AssemblyInfo.cs
deleted file mode 100644
index 34c2b2f7a..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-using Android.App;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("devolutions_crypto")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("devolutions_crypto")]
-[assembly: AssemblyCopyright("Copyright © 2018")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-[assembly: ComVisible(false)]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Resources/Resource.designer.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Resources/Resource.designer.cs
deleted file mode 100644
index cb9e1376d..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Resources/Resource.designer.cs
+++ /dev/null
@@ -1,5420 +0,0 @@
-#pragma warning disable 1591
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-[assembly: global::Android.Runtime.ResourceDesignerAttribute("devolutions_crypto.Resource", IsApplication=false)]
-
-namespace devolutions_crypto
-{
-
-
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "13.1.0.5")]
- public partial class Resource
- {
-
- static Resource()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- public partial class Animation
- {
-
- // aapt resource value: 0x7F010000
- public static int abc_fade_in = 2130771968;
-
- // aapt resource value: 0x7F010001
- public static int abc_fade_out = 2130771969;
-
- // aapt resource value: 0x7F010002
- public static int abc_grow_fade_in_from_bottom = 2130771970;
-
- // aapt resource value: 0x7F010003
- public static int abc_popup_enter = 2130771971;
-
- // aapt resource value: 0x7F010004
- public static int abc_popup_exit = 2130771972;
-
- // aapt resource value: 0x7F010005
- public static int abc_shrink_fade_out_from_bottom = 2130771973;
-
- // aapt resource value: 0x7F010006
- public static int abc_slide_in_bottom = 2130771974;
-
- // aapt resource value: 0x7F010007
- public static int abc_slide_in_top = 2130771975;
-
- // aapt resource value: 0x7F010008
- public static int abc_slide_out_bottom = 2130771976;
-
- // aapt resource value: 0x7F010009
- public static int abc_slide_out_top = 2130771977;
-
- // aapt resource value: 0x7F01000A
- public static int abc_tooltip_enter = 2130771978;
-
- // aapt resource value: 0x7F01000B
- public static int abc_tooltip_exit = 2130771979;
-
- static Animation()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Animation()
- {
- }
- }
-
- public partial class Attribute
- {
-
- // aapt resource value: 0x7F020000
- public static int actionBarDivider = 2130837504;
-
- // aapt resource value: 0x7F020001
- public static int actionBarItemBackground = 2130837505;
-
- // aapt resource value: 0x7F020002
- public static int actionBarPopupTheme = 2130837506;
-
- // aapt resource value: 0x7F020003
- public static int actionBarSize = 2130837507;
-
- // aapt resource value: 0x7F020004
- public static int actionBarSplitStyle = 2130837508;
-
- // aapt resource value: 0x7F020005
- public static int actionBarStyle = 2130837509;
-
- // aapt resource value: 0x7F020006
- public static int actionBarTabBarStyle = 2130837510;
-
- // aapt resource value: 0x7F020007
- public static int actionBarTabStyle = 2130837511;
-
- // aapt resource value: 0x7F020008
- public static int actionBarTabTextStyle = 2130837512;
-
- // aapt resource value: 0x7F020009
- public static int actionBarTheme = 2130837513;
-
- // aapt resource value: 0x7F02000A
- public static int actionBarWidgetTheme = 2130837514;
-
- // aapt resource value: 0x7F02000B
- public static int actionButtonStyle = 2130837515;
-
- // aapt resource value: 0x7F02000C
- public static int actionDropDownStyle = 2130837516;
-
- // aapt resource value: 0x7F02000D
- public static int actionLayout = 2130837517;
-
- // aapt resource value: 0x7F02000E
- public static int actionMenuTextAppearance = 2130837518;
-
- // aapt resource value: 0x7F02000F
- public static int actionMenuTextColor = 2130837519;
-
- // aapt resource value: 0x7F020010
- public static int actionModeBackground = 2130837520;
-
- // aapt resource value: 0x7F020011
- public static int actionModeCloseButtonStyle = 2130837521;
-
- // aapt resource value: 0x7F020012
- public static int actionModeCloseDrawable = 2130837522;
-
- // aapt resource value: 0x7F020013
- public static int actionModeCopyDrawable = 2130837523;
-
- // aapt resource value: 0x7F020014
- public static int actionModeCutDrawable = 2130837524;
-
- // aapt resource value: 0x7F020015
- public static int actionModeFindDrawable = 2130837525;
-
- // aapt resource value: 0x7F020016
- public static int actionModePasteDrawable = 2130837526;
-
- // aapt resource value: 0x7F020017
- public static int actionModePopupWindowStyle = 2130837527;
-
- // aapt resource value: 0x7F020018
- public static int actionModeSelectAllDrawable = 2130837528;
-
- // aapt resource value: 0x7F020019
- public static int actionModeShareDrawable = 2130837529;
-
- // aapt resource value: 0x7F02001A
- public static int actionModeSplitBackground = 2130837530;
-
- // aapt resource value: 0x7F02001B
- public static int actionModeStyle = 2130837531;
-
- // aapt resource value: 0x7F02001C
- public static int actionModeWebSearchDrawable = 2130837532;
-
- // aapt resource value: 0x7F02001D
- public static int actionOverflowButtonStyle = 2130837533;
-
- // aapt resource value: 0x7F02001E
- public static int actionOverflowMenuStyle = 2130837534;
-
- // aapt resource value: 0x7F02001F
- public static int actionProviderClass = 2130837535;
-
- // aapt resource value: 0x7F020020
- public static int actionViewClass = 2130837536;
-
- // aapt resource value: 0x7F020021
- public static int activityChooserViewStyle = 2130837537;
-
- // aapt resource value: 0x7F020022
- public static int alertDialogButtonGroupStyle = 2130837538;
-
- // aapt resource value: 0x7F020023
- public static int alertDialogCenterButtons = 2130837539;
-
- // aapt resource value: 0x7F020024
- public static int alertDialogStyle = 2130837540;
-
- // aapt resource value: 0x7F020025
- public static int alertDialogTheme = 2130837541;
-
- // aapt resource value: 0x7F020026
- public static int allowStacking = 2130837542;
-
- // aapt resource value: 0x7F020027
- public static int alpha = 2130837543;
-
- // aapt resource value: 0x7F020028
- public static int alphabeticModifiers = 2130837544;
-
- // aapt resource value: 0x7F020029
- public static int arrowHeadLength = 2130837545;
-
- // aapt resource value: 0x7F02002A
- public static int arrowShaftLength = 2130837546;
-
- // aapt resource value: 0x7F02002B
- public static int autoCompleteTextViewStyle = 2130837547;
-
- // aapt resource value: 0x7F02002C
- public static int autoSizeMaxTextSize = 2130837548;
-
- // aapt resource value: 0x7F02002D
- public static int autoSizeMinTextSize = 2130837549;
-
- // aapt resource value: 0x7F02002E
- public static int autoSizePresetSizes = 2130837550;
-
- // aapt resource value: 0x7F02002F
- public static int autoSizeStepGranularity = 2130837551;
-
- // aapt resource value: 0x7F020030
- public static int autoSizeTextType = 2130837552;
-
- // aapt resource value: 0x7F020031
- public static int background = 2130837553;
-
- // aapt resource value: 0x7F020032
- public static int backgroundSplit = 2130837554;
-
- // aapt resource value: 0x7F020033
- public static int backgroundStacked = 2130837555;
-
- // aapt resource value: 0x7F020034
- public static int backgroundTint = 2130837556;
-
- // aapt resource value: 0x7F020035
- public static int backgroundTintMode = 2130837557;
-
- // aapt resource value: 0x7F020036
- public static int barLength = 2130837558;
-
- // aapt resource value: 0x7F020037
- public static int borderlessButtonStyle = 2130837559;
-
- // aapt resource value: 0x7F020038
- public static int buttonBarButtonStyle = 2130837560;
-
- // aapt resource value: 0x7F020039
- public static int buttonBarNegativeButtonStyle = 2130837561;
-
- // aapt resource value: 0x7F02003A
- public static int buttonBarNeutralButtonStyle = 2130837562;
-
- // aapt resource value: 0x7F02003B
- public static int buttonBarPositiveButtonStyle = 2130837563;
-
- // aapt resource value: 0x7F02003C
- public static int buttonBarStyle = 2130837564;
-
- // aapt resource value: 0x7F02003D
- public static int buttonGravity = 2130837565;
-
- // aapt resource value: 0x7F02003E
- public static int buttonIconDimen = 2130837566;
-
- // aapt resource value: 0x7F02003F
- public static int buttonPanelSideLayout = 2130837567;
-
- // aapt resource value: 0x7F020040
- public static int buttonStyle = 2130837568;
-
- // aapt resource value: 0x7F020041
- public static int buttonStyleSmall = 2130837569;
-
- // aapt resource value: 0x7F020042
- public static int buttonTint = 2130837570;
-
- // aapt resource value: 0x7F020043
- public static int buttonTintMode = 2130837571;
-
- // aapt resource value: 0x7F020044
- public static int checkboxStyle = 2130837572;
-
- // aapt resource value: 0x7F020045
- public static int checkedTextViewStyle = 2130837573;
-
- // aapt resource value: 0x7F020046
- public static int closeIcon = 2130837574;
-
- // aapt resource value: 0x7F020047
- public static int closeItemLayout = 2130837575;
-
- // aapt resource value: 0x7F020048
- public static int collapseContentDescription = 2130837576;
-
- // aapt resource value: 0x7F020049
- public static int collapseIcon = 2130837577;
-
- // aapt resource value: 0x7F02004A
- public static int color = 2130837578;
-
- // aapt resource value: 0x7F02004B
- public static int colorAccent = 2130837579;
-
- // aapt resource value: 0x7F02004C
- public static int colorBackgroundFloating = 2130837580;
-
- // aapt resource value: 0x7F02004D
- public static int colorButtonNormal = 2130837581;
-
- // aapt resource value: 0x7F02004E
- public static int colorControlActivated = 2130837582;
-
- // aapt resource value: 0x7F02004F
- public static int colorControlHighlight = 2130837583;
-
- // aapt resource value: 0x7F020050
- public static int colorControlNormal = 2130837584;
-
- // aapt resource value: 0x7F020051
- public static int colorError = 2130837585;
-
- // aapt resource value: 0x7F020052
- public static int colorPrimary = 2130837586;
-
- // aapt resource value: 0x7F020053
- public static int colorPrimaryDark = 2130837587;
-
- // aapt resource value: 0x7F020054
- public static int colorSwitchThumbNormal = 2130837588;
-
- // aapt resource value: 0x7F020055
- public static int commitIcon = 2130837589;
-
- // aapt resource value: 0x7F020056
- public static int contentDescription = 2130837590;
-
- // aapt resource value: 0x7F020057
- public static int contentInsetEnd = 2130837591;
-
- // aapt resource value: 0x7F020058
- public static int contentInsetEndWithActions = 2130837592;
-
- // aapt resource value: 0x7F020059
- public static int contentInsetLeft = 2130837593;
-
- // aapt resource value: 0x7F02005A
- public static int contentInsetRight = 2130837594;
-
- // aapt resource value: 0x7F02005B
- public static int contentInsetStart = 2130837595;
-
- // aapt resource value: 0x7F02005C
- public static int contentInsetStartWithNavigation = 2130837596;
-
- // aapt resource value: 0x7F02005D
- public static int controlBackground = 2130837597;
-
- // aapt resource value: 0x7F02005E
- public static int coordinatorLayoutStyle = 2130837598;
-
- // aapt resource value: 0x7F02005F
- public static int customNavigationLayout = 2130837599;
-
- // aapt resource value: 0x7F020060
- public static int defaultQueryHint = 2130837600;
-
- // aapt resource value: 0x7F020061
- public static int dialogCornerRadius = 2130837601;
-
- // aapt resource value: 0x7F020062
- public static int dialogPreferredPadding = 2130837602;
-
- // aapt resource value: 0x7F020063
- public static int dialogTheme = 2130837603;
-
- // aapt resource value: 0x7F020064
- public static int displayOptions = 2130837604;
-
- // aapt resource value: 0x7F020065
- public static int divider = 2130837605;
-
- // aapt resource value: 0x7F020066
- public static int dividerHorizontal = 2130837606;
-
- // aapt resource value: 0x7F020067
- public static int dividerPadding = 2130837607;
-
- // aapt resource value: 0x7F020068
- public static int dividerVertical = 2130837608;
-
- // aapt resource value: 0x7F020069
- public static int drawableSize = 2130837609;
-
- // aapt resource value: 0x7F02006A
- public static int drawerArrowStyle = 2130837610;
-
- // aapt resource value: 0x7F02006C
- public static int dropdownListPreferredItemHeight = 2130837612;
-
- // aapt resource value: 0x7F02006B
- public static int dropDownListViewStyle = 2130837611;
-
- // aapt resource value: 0x7F02006D
- public static int editTextBackground = 2130837613;
-
- // aapt resource value: 0x7F02006E
- public static int editTextColor = 2130837614;
-
- // aapt resource value: 0x7F02006F
- public static int editTextStyle = 2130837615;
-
- // aapt resource value: 0x7F020070
- public static int elevation = 2130837616;
-
- // aapt resource value: 0x7F020071
- public static int expandActivityOverflowButtonDrawable = 2130837617;
-
- // aapt resource value: 0x7F020072
- public static int firstBaselineToTopHeight = 2130837618;
-
- // aapt resource value: 0x7F020073
- public static int font = 2130837619;
-
- // aapt resource value: 0x7F020074
- public static int fontFamily = 2130837620;
-
- // aapt resource value: 0x7F020075
- public static int fontProviderAuthority = 2130837621;
-
- // aapt resource value: 0x7F020076
- public static int fontProviderCerts = 2130837622;
-
- // aapt resource value: 0x7F020077
- public static int fontProviderFetchStrategy = 2130837623;
-
- // aapt resource value: 0x7F020078
- public static int fontProviderFetchTimeout = 2130837624;
-
- // aapt resource value: 0x7F020079
- public static int fontProviderPackage = 2130837625;
-
- // aapt resource value: 0x7F02007A
- public static int fontProviderQuery = 2130837626;
-
- // aapt resource value: 0x7F02007B
- public static int fontStyle = 2130837627;
-
- // aapt resource value: 0x7F02007C
- public static int fontVariationSettings = 2130837628;
-
- // aapt resource value: 0x7F02007D
- public static int fontWeight = 2130837629;
-
- // aapt resource value: 0x7F02007E
- public static int gapBetweenBars = 2130837630;
-
- // aapt resource value: 0x7F02007F
- public static int goIcon = 2130837631;
-
- // aapt resource value: 0x7F020080
- public static int height = 2130837632;
-
- // aapt resource value: 0x7F020081
- public static int hideOnContentScroll = 2130837633;
-
- // aapt resource value: 0x7F020082
- public static int homeAsUpIndicator = 2130837634;
-
- // aapt resource value: 0x7F020083
- public static int homeLayout = 2130837635;
-
- // aapt resource value: 0x7F020084
- public static int icon = 2130837636;
-
- // aapt resource value: 0x7F020087
- public static int iconifiedByDefault = 2130837639;
-
- // aapt resource value: 0x7F020085
- public static int iconTint = 2130837637;
-
- // aapt resource value: 0x7F020086
- public static int iconTintMode = 2130837638;
-
- // aapt resource value: 0x7F020088
- public static int imageButtonStyle = 2130837640;
-
- // aapt resource value: 0x7F020089
- public static int indeterminateProgressStyle = 2130837641;
-
- // aapt resource value: 0x7F02008A
- public static int initialActivityCount = 2130837642;
-
- // aapt resource value: 0x7F02008B
- public static int isLightTheme = 2130837643;
-
- // aapt resource value: 0x7F02008C
- public static int itemPadding = 2130837644;
-
- // aapt resource value: 0x7F02008D
- public static int keylines = 2130837645;
-
- // aapt resource value: 0x7F02008E
- public static int lastBaselineToBottomHeight = 2130837646;
-
- // aapt resource value: 0x7F02008F
- public static int layout = 2130837647;
-
- // aapt resource value: 0x7F020090
- public static int layout_anchor = 2130837648;
-
- // aapt resource value: 0x7F020091
- public static int layout_anchorGravity = 2130837649;
-
- // aapt resource value: 0x7F020092
- public static int layout_behavior = 2130837650;
-
- // aapt resource value: 0x7F020093
- public static int layout_dodgeInsetEdges = 2130837651;
-
- // aapt resource value: 0x7F020094
- public static int layout_insetEdge = 2130837652;
-
- // aapt resource value: 0x7F020095
- public static int layout_keyline = 2130837653;
-
- // aapt resource value: 0x7F020096
- public static int lineHeight = 2130837654;
-
- // aapt resource value: 0x7F020097
- public static int listChoiceBackgroundIndicator = 2130837655;
-
- // aapt resource value: 0x7F020098
- public static int listDividerAlertDialog = 2130837656;
-
- // aapt resource value: 0x7F020099
- public static int listItemLayout = 2130837657;
-
- // aapt resource value: 0x7F02009A
- public static int listLayout = 2130837658;
-
- // aapt resource value: 0x7F02009B
- public static int listMenuViewStyle = 2130837659;
-
- // aapt resource value: 0x7F02009C
- public static int listPopupWindowStyle = 2130837660;
-
- // aapt resource value: 0x7F02009D
- public static int listPreferredItemHeight = 2130837661;
-
- // aapt resource value: 0x7F02009E
- public static int listPreferredItemHeightLarge = 2130837662;
-
- // aapt resource value: 0x7F02009F
- public static int listPreferredItemHeightSmall = 2130837663;
-
- // aapt resource value: 0x7F0200A0
- public static int listPreferredItemPaddingLeft = 2130837664;
-
- // aapt resource value: 0x7F0200A1
- public static int listPreferredItemPaddingRight = 2130837665;
-
- // aapt resource value: 0x7F0200A2
- public static int logo = 2130837666;
-
- // aapt resource value: 0x7F0200A3
- public static int logoDescription = 2130837667;
-
- // aapt resource value: 0x7F0200A4
- public static int maxButtonHeight = 2130837668;
-
- // aapt resource value: 0x7F0200A5
- public static int measureWithLargestChild = 2130837669;
-
- // aapt resource value: 0x7F0200A6
- public static int multiChoiceItemLayout = 2130837670;
-
- // aapt resource value: 0x7F0200A7
- public static int navigationContentDescription = 2130837671;
-
- // aapt resource value: 0x7F0200A8
- public static int navigationIcon = 2130837672;
-
- // aapt resource value: 0x7F0200A9
- public static int navigationMode = 2130837673;
-
- // aapt resource value: 0x7F0200AA
- public static int numericModifiers = 2130837674;
-
- // aapt resource value: 0x7F0200AB
- public static int overlapAnchor = 2130837675;
-
- // aapt resource value: 0x7F0200AC
- public static int paddingBottomNoButtons = 2130837676;
-
- // aapt resource value: 0x7F0200AD
- public static int paddingEnd = 2130837677;
-
- // aapt resource value: 0x7F0200AE
- public static int paddingStart = 2130837678;
-
- // aapt resource value: 0x7F0200AF
- public static int paddingTopNoTitle = 2130837679;
-
- // aapt resource value: 0x7F0200B0
- public static int panelBackground = 2130837680;
-
- // aapt resource value: 0x7F0200B1
- public static int panelMenuListTheme = 2130837681;
-
- // aapt resource value: 0x7F0200B2
- public static int panelMenuListWidth = 2130837682;
-
- // aapt resource value: 0x7F0200B3
- public static int popupMenuStyle = 2130837683;
-
- // aapt resource value: 0x7F0200B4
- public static int popupTheme = 2130837684;
-
- // aapt resource value: 0x7F0200B5
- public static int popupWindowStyle = 2130837685;
-
- // aapt resource value: 0x7F0200B6
- public static int preserveIconSpacing = 2130837686;
-
- // aapt resource value: 0x7F0200B7
- public static int progressBarPadding = 2130837687;
-
- // aapt resource value: 0x7F0200B8
- public static int progressBarStyle = 2130837688;
-
- // aapt resource value: 0x7F0200B9
- public static int queryBackground = 2130837689;
-
- // aapt resource value: 0x7F0200BA
- public static int queryHint = 2130837690;
-
- // aapt resource value: 0x7F0200BB
- public static int radioButtonStyle = 2130837691;
-
- // aapt resource value: 0x7F0200BC
- public static int ratingBarStyle = 2130837692;
-
- // aapt resource value: 0x7F0200BD
- public static int ratingBarStyleIndicator = 2130837693;
-
- // aapt resource value: 0x7F0200BE
- public static int ratingBarStyleSmall = 2130837694;
-
- // aapt resource value: 0x7F0200BF
- public static int searchHintIcon = 2130837695;
-
- // aapt resource value: 0x7F0200C0
- public static int searchIcon = 2130837696;
-
- // aapt resource value: 0x7F0200C1
- public static int searchViewStyle = 2130837697;
-
- // aapt resource value: 0x7F0200C2
- public static int seekBarStyle = 2130837698;
-
- // aapt resource value: 0x7F0200C3
- public static int selectableItemBackground = 2130837699;
-
- // aapt resource value: 0x7F0200C4
- public static int selectableItemBackgroundBorderless = 2130837700;
-
- // aapt resource value: 0x7F0200C5
- public static int showAsAction = 2130837701;
-
- // aapt resource value: 0x7F0200C6
- public static int showDividers = 2130837702;
-
- // aapt resource value: 0x7F0200C7
- public static int showText = 2130837703;
-
- // aapt resource value: 0x7F0200C8
- public static int showTitle = 2130837704;
-
- // aapt resource value: 0x7F0200C9
- public static int singleChoiceItemLayout = 2130837705;
-
- // aapt resource value: 0x7F0200CA
- public static int spinBars = 2130837706;
-
- // aapt resource value: 0x7F0200CB
- public static int spinnerDropDownItemStyle = 2130837707;
-
- // aapt resource value: 0x7F0200CC
- public static int spinnerStyle = 2130837708;
-
- // aapt resource value: 0x7F0200CD
- public static int splitTrack = 2130837709;
-
- // aapt resource value: 0x7F0200CE
- public static int srcCompat = 2130837710;
-
- // aapt resource value: 0x7F0200CF
- public static int state_above_anchor = 2130837711;
-
- // aapt resource value: 0x7F0200D0
- public static int statusBarBackground = 2130837712;
-
- // aapt resource value: 0x7F0200D1
- public static int subMenuArrow = 2130837713;
-
- // aapt resource value: 0x7F0200D2
- public static int submitBackground = 2130837714;
-
- // aapt resource value: 0x7F0200D3
- public static int subtitle = 2130837715;
-
- // aapt resource value: 0x7F0200D4
- public static int subtitleTextAppearance = 2130837716;
-
- // aapt resource value: 0x7F0200D5
- public static int subtitleTextColor = 2130837717;
-
- // aapt resource value: 0x7F0200D6
- public static int subtitleTextStyle = 2130837718;
-
- // aapt resource value: 0x7F0200D7
- public static int suggestionRowLayout = 2130837719;
-
- // aapt resource value: 0x7F0200D8
- public static int switchMinWidth = 2130837720;
-
- // aapt resource value: 0x7F0200D9
- public static int switchPadding = 2130837721;
-
- // aapt resource value: 0x7F0200DA
- public static int switchStyle = 2130837722;
-
- // aapt resource value: 0x7F0200DB
- public static int switchTextAppearance = 2130837723;
-
- // aapt resource value: 0x7F0200DC
- public static int textAllCaps = 2130837724;
-
- // aapt resource value: 0x7F0200DD
- public static int textAppearanceLargePopupMenu = 2130837725;
-
- // aapt resource value: 0x7F0200DE
- public static int textAppearanceListItem = 2130837726;
-
- // aapt resource value: 0x7F0200DF
- public static int textAppearanceListItemSecondary = 2130837727;
-
- // aapt resource value: 0x7F0200E0
- public static int textAppearanceListItemSmall = 2130837728;
-
- // aapt resource value: 0x7F0200E1
- public static int textAppearancePopupMenuHeader = 2130837729;
-
- // aapt resource value: 0x7F0200E2
- public static int textAppearanceSearchResultSubtitle = 2130837730;
-
- // aapt resource value: 0x7F0200E3
- public static int textAppearanceSearchResultTitle = 2130837731;
-
- // aapt resource value: 0x7F0200E4
- public static int textAppearanceSmallPopupMenu = 2130837732;
-
- // aapt resource value: 0x7F0200E5
- public static int textColorAlertDialogListItem = 2130837733;
-
- // aapt resource value: 0x7F0200E6
- public static int textColorSearchUrl = 2130837734;
-
- // aapt resource value: 0x7F0200E7
- public static int theme = 2130837735;
-
- // aapt resource value: 0x7F0200E8
- public static int thickness = 2130837736;
-
- // aapt resource value: 0x7F0200E9
- public static int thumbTextPadding = 2130837737;
-
- // aapt resource value: 0x7F0200EA
- public static int thumbTint = 2130837738;
-
- // aapt resource value: 0x7F0200EB
- public static int thumbTintMode = 2130837739;
-
- // aapt resource value: 0x7F0200EC
- public static int tickMark = 2130837740;
-
- // aapt resource value: 0x7F0200ED
- public static int tickMarkTint = 2130837741;
-
- // aapt resource value: 0x7F0200EE
- public static int tickMarkTintMode = 2130837742;
-
- // aapt resource value: 0x7F0200EF
- public static int tint = 2130837743;
-
- // aapt resource value: 0x7F0200F0
- public static int tintMode = 2130837744;
-
- // aapt resource value: 0x7F0200F1
- public static int title = 2130837745;
-
- // aapt resource value: 0x7F0200F2
- public static int titleMargin = 2130837746;
-
- // aapt resource value: 0x7F0200F3
- public static int titleMarginBottom = 2130837747;
-
- // aapt resource value: 0x7F0200F4
- public static int titleMarginEnd = 2130837748;
-
- // aapt resource value: 0x7F0200F7
- public static int titleMargins = 2130837751;
-
- // aapt resource value: 0x7F0200F5
- public static int titleMarginStart = 2130837749;
-
- // aapt resource value: 0x7F0200F6
- public static int titleMarginTop = 2130837750;
-
- // aapt resource value: 0x7F0200F8
- public static int titleTextAppearance = 2130837752;
-
- // aapt resource value: 0x7F0200F9
- public static int titleTextColor = 2130837753;
-
- // aapt resource value: 0x7F0200FA
- public static int titleTextStyle = 2130837754;
-
- // aapt resource value: 0x7F0200FB
- public static int toolbarNavigationButtonStyle = 2130837755;
-
- // aapt resource value: 0x7F0200FC
- public static int toolbarStyle = 2130837756;
-
- // aapt resource value: 0x7F0200FD
- public static int tooltipForegroundColor = 2130837757;
-
- // aapt resource value: 0x7F0200FE
- public static int tooltipFrameBackground = 2130837758;
-
- // aapt resource value: 0x7F0200FF
- public static int tooltipText = 2130837759;
-
- // aapt resource value: 0x7F020100
- public static int track = 2130837760;
-
- // aapt resource value: 0x7F020101
- public static int trackTint = 2130837761;
-
- // aapt resource value: 0x7F020102
- public static int trackTintMode = 2130837762;
-
- // aapt resource value: 0x7F020103
- public static int ttcIndex = 2130837763;
-
- // aapt resource value: 0x7F020104
- public static int viewInflaterClass = 2130837764;
-
- // aapt resource value: 0x7F020105
- public static int voiceIcon = 2130837765;
-
- // aapt resource value: 0x7F020106
- public static int windowActionBar = 2130837766;
-
- // aapt resource value: 0x7F020107
- public static int windowActionBarOverlay = 2130837767;
-
- // aapt resource value: 0x7F020108
- public static int windowActionModeOverlay = 2130837768;
-
- // aapt resource value: 0x7F020109
- public static int windowFixedHeightMajor = 2130837769;
-
- // aapt resource value: 0x7F02010A
- public static int windowFixedHeightMinor = 2130837770;
-
- // aapt resource value: 0x7F02010B
- public static int windowFixedWidthMajor = 2130837771;
-
- // aapt resource value: 0x7F02010C
- public static int windowFixedWidthMinor = 2130837772;
-
- // aapt resource value: 0x7F02010D
- public static int windowMinWidthMajor = 2130837773;
-
- // aapt resource value: 0x7F02010E
- public static int windowMinWidthMinor = 2130837774;
-
- // aapt resource value: 0x7F02010F
- public static int windowNoTitle = 2130837775;
-
- static Attribute()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Attribute()
- {
- }
- }
-
- public partial class Boolean
- {
-
- // aapt resource value: 0x7F030000
- public static int abc_action_bar_embed_tabs = 2130903040;
-
- // aapt resource value: 0x7F030001
- public static int abc_allow_stacked_button_bar = 2130903041;
-
- // aapt resource value: 0x7F030002
- public static int abc_config_actionMenuItemAllCaps = 2130903042;
-
- static Boolean()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Boolean()
- {
- }
- }
-
- public partial class Color
- {
-
- // aapt resource value: 0x7F040000
- public static int abc_background_cache_hint_selector_material_dark = 2130968576;
-
- // aapt resource value: 0x7F040001
- public static int abc_background_cache_hint_selector_material_light = 2130968577;
-
- // aapt resource value: 0x7F040002
- public static int abc_btn_colored_borderless_text_material = 2130968578;
-
- // aapt resource value: 0x7F040003
- public static int abc_btn_colored_text_material = 2130968579;
-
- // aapt resource value: 0x7F040004
- public static int abc_color_highlight_material = 2130968580;
-
- // aapt resource value: 0x7F040005
- public static int abc_hint_foreground_material_dark = 2130968581;
-
- // aapt resource value: 0x7F040006
- public static int abc_hint_foreground_material_light = 2130968582;
-
- // aapt resource value: 0x7F040007
- public static int abc_input_method_navigation_guard = 2130968583;
-
- // aapt resource value: 0x7F040008
- public static int abc_primary_text_disable_only_material_dark = 2130968584;
-
- // aapt resource value: 0x7F040009
- public static int abc_primary_text_disable_only_material_light = 2130968585;
-
- // aapt resource value: 0x7F04000A
- public static int abc_primary_text_material_dark = 2130968586;
-
- // aapt resource value: 0x7F04000B
- public static int abc_primary_text_material_light = 2130968587;
-
- // aapt resource value: 0x7F04000C
- public static int abc_search_url_text = 2130968588;
-
- // aapt resource value: 0x7F04000D
- public static int abc_search_url_text_normal = 2130968589;
-
- // aapt resource value: 0x7F04000E
- public static int abc_search_url_text_pressed = 2130968590;
-
- // aapt resource value: 0x7F04000F
- public static int abc_search_url_text_selected = 2130968591;
-
- // aapt resource value: 0x7F040010
- public static int abc_secondary_text_material_dark = 2130968592;
-
- // aapt resource value: 0x7F040011
- public static int abc_secondary_text_material_light = 2130968593;
-
- // aapt resource value: 0x7F040012
- public static int abc_tint_btn_checkable = 2130968594;
-
- // aapt resource value: 0x7F040013
- public static int abc_tint_default = 2130968595;
-
- // aapt resource value: 0x7F040014
- public static int abc_tint_edittext = 2130968596;
-
- // aapt resource value: 0x7F040015
- public static int abc_tint_seek_thumb = 2130968597;
-
- // aapt resource value: 0x7F040016
- public static int abc_tint_spinner = 2130968598;
-
- // aapt resource value: 0x7F040017
- public static int abc_tint_switch_track = 2130968599;
-
- // aapt resource value: 0x7F040018
- public static int accent_material_dark = 2130968600;
-
- // aapt resource value: 0x7F040019
- public static int accent_material_light = 2130968601;
-
- // aapt resource value: 0x7F04001A
- public static int background_floating_material_dark = 2130968602;
-
- // aapt resource value: 0x7F04001B
- public static int background_floating_material_light = 2130968603;
-
- // aapt resource value: 0x7F04001C
- public static int background_material_dark = 2130968604;
-
- // aapt resource value: 0x7F04001D
- public static int background_material_light = 2130968605;
-
- // aapt resource value: 0x7F04001E
- public static int bright_foreground_disabled_material_dark = 2130968606;
-
- // aapt resource value: 0x7F04001F
- public static int bright_foreground_disabled_material_light = 2130968607;
-
- // aapt resource value: 0x7F040020
- public static int bright_foreground_inverse_material_dark = 2130968608;
-
- // aapt resource value: 0x7F040021
- public static int bright_foreground_inverse_material_light = 2130968609;
-
- // aapt resource value: 0x7F040022
- public static int bright_foreground_material_dark = 2130968610;
-
- // aapt resource value: 0x7F040023
- public static int bright_foreground_material_light = 2130968611;
-
- // aapt resource value: 0x7F040024
- public static int button_material_dark = 2130968612;
-
- // aapt resource value: 0x7F040025
- public static int button_material_light = 2130968613;
-
- // aapt resource value: 0x7F040026
- public static int dim_foreground_disabled_material_dark = 2130968614;
-
- // aapt resource value: 0x7F040027
- public static int dim_foreground_disabled_material_light = 2130968615;
-
- // aapt resource value: 0x7F040028
- public static int dim_foreground_material_dark = 2130968616;
-
- // aapt resource value: 0x7F040029
- public static int dim_foreground_material_light = 2130968617;
-
- // aapt resource value: 0x7F04002A
- public static int error_color_material_dark = 2130968618;
-
- // aapt resource value: 0x7F04002B
- public static int error_color_material_light = 2130968619;
-
- // aapt resource value: 0x7F04002C
- public static int foreground_material_dark = 2130968620;
-
- // aapt resource value: 0x7F04002D
- public static int foreground_material_light = 2130968621;
-
- // aapt resource value: 0x7F04002E
- public static int highlighted_text_material_dark = 2130968622;
-
- // aapt resource value: 0x7F04002F
- public static int highlighted_text_material_light = 2130968623;
-
- // aapt resource value: 0x7F040030
- public static int material_blue_grey_800 = 2130968624;
-
- // aapt resource value: 0x7F040031
- public static int material_blue_grey_900 = 2130968625;
-
- // aapt resource value: 0x7F040032
- public static int material_blue_grey_950 = 2130968626;
-
- // aapt resource value: 0x7F040033
- public static int material_deep_teal_200 = 2130968627;
-
- // aapt resource value: 0x7F040034
- public static int material_deep_teal_500 = 2130968628;
-
- // aapt resource value: 0x7F040035
- public static int material_grey_100 = 2130968629;
-
- // aapt resource value: 0x7F040036
- public static int material_grey_300 = 2130968630;
-
- // aapt resource value: 0x7F040037
- public static int material_grey_50 = 2130968631;
-
- // aapt resource value: 0x7F040038
- public static int material_grey_600 = 2130968632;
-
- // aapt resource value: 0x7F040039
- public static int material_grey_800 = 2130968633;
-
- // aapt resource value: 0x7F04003A
- public static int material_grey_850 = 2130968634;
-
- // aapt resource value: 0x7F04003B
- public static int material_grey_900 = 2130968635;
-
- // aapt resource value: 0x7F04003C
- public static int notification_action_color_filter = 2130968636;
-
- // aapt resource value: 0x7F04003D
- public static int notification_icon_bg_color = 2130968637;
-
- // aapt resource value: 0x7F04003E
- public static int primary_dark_material_dark = 2130968638;
-
- // aapt resource value: 0x7F04003F
- public static int primary_dark_material_light = 2130968639;
-
- // aapt resource value: 0x7F040040
- public static int primary_material_dark = 2130968640;
-
- // aapt resource value: 0x7F040041
- public static int primary_material_light = 2130968641;
-
- // aapt resource value: 0x7F040042
- public static int primary_text_default_material_dark = 2130968642;
-
- // aapt resource value: 0x7F040043
- public static int primary_text_default_material_light = 2130968643;
-
- // aapt resource value: 0x7F040044
- public static int primary_text_disabled_material_dark = 2130968644;
-
- // aapt resource value: 0x7F040045
- public static int primary_text_disabled_material_light = 2130968645;
-
- // aapt resource value: 0x7F040046
- public static int ripple_material_dark = 2130968646;
-
- // aapt resource value: 0x7F040047
- public static int ripple_material_light = 2130968647;
-
- // aapt resource value: 0x7F040048
- public static int secondary_text_default_material_dark = 2130968648;
-
- // aapt resource value: 0x7F040049
- public static int secondary_text_default_material_light = 2130968649;
-
- // aapt resource value: 0x7F04004A
- public static int secondary_text_disabled_material_dark = 2130968650;
-
- // aapt resource value: 0x7F04004B
- public static int secondary_text_disabled_material_light = 2130968651;
-
- // aapt resource value: 0x7F04004C
- public static int switch_thumb_disabled_material_dark = 2130968652;
-
- // aapt resource value: 0x7F04004D
- public static int switch_thumb_disabled_material_light = 2130968653;
-
- // aapt resource value: 0x7F04004E
- public static int switch_thumb_material_dark = 2130968654;
-
- // aapt resource value: 0x7F04004F
- public static int switch_thumb_material_light = 2130968655;
-
- // aapt resource value: 0x7F040050
- public static int switch_thumb_normal_material_dark = 2130968656;
-
- // aapt resource value: 0x7F040051
- public static int switch_thumb_normal_material_light = 2130968657;
-
- // aapt resource value: 0x7F040052
- public static int tooltip_background_dark = 2130968658;
-
- // aapt resource value: 0x7F040053
- public static int tooltip_background_light = 2130968659;
-
- static Color()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Color()
- {
- }
- }
-
- public partial class Dimension
- {
-
- // aapt resource value: 0x7F050000
- public static int abc_action_bar_content_inset_material = 2131034112;
-
- // aapt resource value: 0x7F050001
- public static int abc_action_bar_content_inset_with_nav = 2131034113;
-
- // aapt resource value: 0x7F050002
- public static int abc_action_bar_default_height_material = 2131034114;
-
- // aapt resource value: 0x7F050003
- public static int abc_action_bar_default_padding_end_material = 2131034115;
-
- // aapt resource value: 0x7F050004
- public static int abc_action_bar_default_padding_start_material = 2131034116;
-
- // aapt resource value: 0x7F050005
- public static int abc_action_bar_elevation_material = 2131034117;
-
- // aapt resource value: 0x7F050006
- public static int abc_action_bar_icon_vertical_padding_material = 2131034118;
-
- // aapt resource value: 0x7F050007
- public static int abc_action_bar_overflow_padding_end_material = 2131034119;
-
- // aapt resource value: 0x7F050008
- public static int abc_action_bar_overflow_padding_start_material = 2131034120;
-
- // aapt resource value: 0x7F050009
- public static int abc_action_bar_stacked_max_height = 2131034121;
-
- // aapt resource value: 0x7F05000A
- public static int abc_action_bar_stacked_tab_max_width = 2131034122;
-
- // aapt resource value: 0x7F05000B
- public static int abc_action_bar_subtitle_bottom_margin_material = 2131034123;
-
- // aapt resource value: 0x7F05000C
- public static int abc_action_bar_subtitle_top_margin_material = 2131034124;
-
- // aapt resource value: 0x7F05000D
- public static int abc_action_button_min_height_material = 2131034125;
-
- // aapt resource value: 0x7F05000E
- public static int abc_action_button_min_width_material = 2131034126;
-
- // aapt resource value: 0x7F05000F
- public static int abc_action_button_min_width_overflow_material = 2131034127;
-
- // aapt resource value: 0x7F050010
- public static int abc_alert_dialog_button_bar_height = 2131034128;
-
- // aapt resource value: 0x7F050011
- public static int abc_alert_dialog_button_dimen = 2131034129;
-
- // aapt resource value: 0x7F050012
- public static int abc_button_inset_horizontal_material = 2131034130;
-
- // aapt resource value: 0x7F050013
- public static int abc_button_inset_vertical_material = 2131034131;
-
- // aapt resource value: 0x7F050014
- public static int abc_button_padding_horizontal_material = 2131034132;
-
- // aapt resource value: 0x7F050015
- public static int abc_button_padding_vertical_material = 2131034133;
-
- // aapt resource value: 0x7F050016
- public static int abc_cascading_menus_min_smallest_width = 2131034134;
-
- // aapt resource value: 0x7F050017
- public static int abc_config_prefDialogWidth = 2131034135;
-
- // aapt resource value: 0x7F050018
- public static int abc_control_corner_material = 2131034136;
-
- // aapt resource value: 0x7F050019
- public static int abc_control_inset_material = 2131034137;
-
- // aapt resource value: 0x7F05001A
- public static int abc_control_padding_material = 2131034138;
-
- // aapt resource value: 0x7F05001B
- public static int abc_dialog_corner_radius_material = 2131034139;
-
- // aapt resource value: 0x7F05001C
- public static int abc_dialog_fixed_height_major = 2131034140;
-
- // aapt resource value: 0x7F05001D
- public static int abc_dialog_fixed_height_minor = 2131034141;
-
- // aapt resource value: 0x7F05001E
- public static int abc_dialog_fixed_width_major = 2131034142;
-
- // aapt resource value: 0x7F05001F
- public static int abc_dialog_fixed_width_minor = 2131034143;
-
- // aapt resource value: 0x7F050020
- public static int abc_dialog_list_padding_bottom_no_buttons = 2131034144;
-
- // aapt resource value: 0x7F050021
- public static int abc_dialog_list_padding_top_no_title = 2131034145;
-
- // aapt resource value: 0x7F050022
- public static int abc_dialog_min_width_major = 2131034146;
-
- // aapt resource value: 0x7F050023
- public static int abc_dialog_min_width_minor = 2131034147;
-
- // aapt resource value: 0x7F050024
- public static int abc_dialog_padding_material = 2131034148;
-
- // aapt resource value: 0x7F050025
- public static int abc_dialog_padding_top_material = 2131034149;
-
- // aapt resource value: 0x7F050026
- public static int abc_dialog_title_divider_material = 2131034150;
-
- // aapt resource value: 0x7F050027
- public static int abc_disabled_alpha_material_dark = 2131034151;
-
- // aapt resource value: 0x7F050028
- public static int abc_disabled_alpha_material_light = 2131034152;
-
- // aapt resource value: 0x7F050029
- public static int abc_dropdownitem_icon_width = 2131034153;
-
- // aapt resource value: 0x7F05002A
- public static int abc_dropdownitem_text_padding_left = 2131034154;
-
- // aapt resource value: 0x7F05002B
- public static int abc_dropdownitem_text_padding_right = 2131034155;
-
- // aapt resource value: 0x7F05002C
- public static int abc_edit_text_inset_bottom_material = 2131034156;
-
- // aapt resource value: 0x7F05002D
- public static int abc_edit_text_inset_horizontal_material = 2131034157;
-
- // aapt resource value: 0x7F05002E
- public static int abc_edit_text_inset_top_material = 2131034158;
-
- // aapt resource value: 0x7F05002F
- public static int abc_floating_window_z = 2131034159;
-
- // aapt resource value: 0x7F050030
- public static int abc_list_item_padding_horizontal_material = 2131034160;
-
- // aapt resource value: 0x7F050031
- public static int abc_panel_menu_list_width = 2131034161;
-
- // aapt resource value: 0x7F050032
- public static int abc_progress_bar_height_material = 2131034162;
-
- // aapt resource value: 0x7F050033
- public static int abc_search_view_preferred_height = 2131034163;
-
- // aapt resource value: 0x7F050034
- public static int abc_search_view_preferred_width = 2131034164;
-
- // aapt resource value: 0x7F050035
- public static int abc_seekbar_track_background_height_material = 2131034165;
-
- // aapt resource value: 0x7F050036
- public static int abc_seekbar_track_progress_height_material = 2131034166;
-
- // aapt resource value: 0x7F050037
- public static int abc_select_dialog_padding_start_material = 2131034167;
-
- // aapt resource value: 0x7F050038
- public static int abc_switch_padding = 2131034168;
-
- // aapt resource value: 0x7F050039
- public static int abc_text_size_body_1_material = 2131034169;
-
- // aapt resource value: 0x7F05003A
- public static int abc_text_size_body_2_material = 2131034170;
-
- // aapt resource value: 0x7F05003B
- public static int abc_text_size_button_material = 2131034171;
-
- // aapt resource value: 0x7F05003C
- public static int abc_text_size_caption_material = 2131034172;
-
- // aapt resource value: 0x7F05003D
- public static int abc_text_size_display_1_material = 2131034173;
-
- // aapt resource value: 0x7F05003E
- public static int abc_text_size_display_2_material = 2131034174;
-
- // aapt resource value: 0x7F05003F
- public static int abc_text_size_display_3_material = 2131034175;
-
- // aapt resource value: 0x7F050040
- public static int abc_text_size_display_4_material = 2131034176;
-
- // aapt resource value: 0x7F050041
- public static int abc_text_size_headline_material = 2131034177;
-
- // aapt resource value: 0x7F050042
- public static int abc_text_size_large_material = 2131034178;
-
- // aapt resource value: 0x7F050043
- public static int abc_text_size_medium_material = 2131034179;
-
- // aapt resource value: 0x7F050044
- public static int abc_text_size_menu_header_material = 2131034180;
-
- // aapt resource value: 0x7F050045
- public static int abc_text_size_menu_material = 2131034181;
-
- // aapt resource value: 0x7F050046
- public static int abc_text_size_small_material = 2131034182;
-
- // aapt resource value: 0x7F050047
- public static int abc_text_size_subhead_material = 2131034183;
-
- // aapt resource value: 0x7F050048
- public static int abc_text_size_subtitle_material_toolbar = 2131034184;
-
- // aapt resource value: 0x7F050049
- public static int abc_text_size_title_material = 2131034185;
-
- // aapt resource value: 0x7F05004A
- public static int abc_text_size_title_material_toolbar = 2131034186;
-
- // aapt resource value: 0x7F05004B
- public static int compat_button_inset_horizontal_material = 2131034187;
-
- // aapt resource value: 0x7F05004C
- public static int compat_button_inset_vertical_material = 2131034188;
-
- // aapt resource value: 0x7F05004D
- public static int compat_button_padding_horizontal_material = 2131034189;
-
- // aapt resource value: 0x7F05004E
- public static int compat_button_padding_vertical_material = 2131034190;
-
- // aapt resource value: 0x7F05004F
- public static int compat_control_corner_material = 2131034191;
-
- // aapt resource value: 0x7F050050
- public static int compat_notification_large_icon_max_height = 2131034192;
-
- // aapt resource value: 0x7F050051
- public static int compat_notification_large_icon_max_width = 2131034193;
-
- // aapt resource value: 0x7F050052
- public static int disabled_alpha_material_dark = 2131034194;
-
- // aapt resource value: 0x7F050053
- public static int disabled_alpha_material_light = 2131034195;
-
- // aapt resource value: 0x7F050054
- public static int highlight_alpha_material_colored = 2131034196;
-
- // aapt resource value: 0x7F050055
- public static int highlight_alpha_material_dark = 2131034197;
-
- // aapt resource value: 0x7F050056
- public static int highlight_alpha_material_light = 2131034198;
-
- // aapt resource value: 0x7F050057
- public static int hint_alpha_material_dark = 2131034199;
-
- // aapt resource value: 0x7F050058
- public static int hint_alpha_material_light = 2131034200;
-
- // aapt resource value: 0x7F050059
- public static int hint_pressed_alpha_material_dark = 2131034201;
-
- // aapt resource value: 0x7F05005A
- public static int hint_pressed_alpha_material_light = 2131034202;
-
- // aapt resource value: 0x7F05005B
- public static int notification_action_icon_size = 2131034203;
-
- // aapt resource value: 0x7F05005C
- public static int notification_action_text_size = 2131034204;
-
- // aapt resource value: 0x7F05005D
- public static int notification_big_circle_margin = 2131034205;
-
- // aapt resource value: 0x7F05005E
- public static int notification_content_margin_start = 2131034206;
-
- // aapt resource value: 0x7F05005F
- public static int notification_large_icon_height = 2131034207;
-
- // aapt resource value: 0x7F050060
- public static int notification_large_icon_width = 2131034208;
-
- // aapt resource value: 0x7F050061
- public static int notification_main_column_padding_top = 2131034209;
-
- // aapt resource value: 0x7F050062
- public static int notification_media_narrow_margin = 2131034210;
-
- // aapt resource value: 0x7F050063
- public static int notification_right_icon_size = 2131034211;
-
- // aapt resource value: 0x7F050064
- public static int notification_right_side_padding_top = 2131034212;
-
- // aapt resource value: 0x7F050065
- public static int notification_small_icon_background_padding = 2131034213;
-
- // aapt resource value: 0x7F050066
- public static int notification_small_icon_size_as_large = 2131034214;
-
- // aapt resource value: 0x7F050067
- public static int notification_subtext_size = 2131034215;
-
- // aapt resource value: 0x7F050068
- public static int notification_top_pad = 2131034216;
-
- // aapt resource value: 0x7F050069
- public static int notification_top_pad_large_text = 2131034217;
-
- // aapt resource value: 0x7F05006A
- public static int tooltip_corner_radius = 2131034218;
-
- // aapt resource value: 0x7F05006B
- public static int tooltip_horizontal_padding = 2131034219;
-
- // aapt resource value: 0x7F05006C
- public static int tooltip_margin = 2131034220;
-
- // aapt resource value: 0x7F05006D
- public static int tooltip_precise_anchor_extra_offset = 2131034221;
-
- // aapt resource value: 0x7F05006E
- public static int tooltip_precise_anchor_threshold = 2131034222;
-
- // aapt resource value: 0x7F05006F
- public static int tooltip_vertical_padding = 2131034223;
-
- // aapt resource value: 0x7F050070
- public static int tooltip_y_offset_non_touch = 2131034224;
-
- // aapt resource value: 0x7F050071
- public static int tooltip_y_offset_touch = 2131034225;
-
- static Dimension()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Dimension()
- {
- }
- }
-
- public partial class Drawable
- {
-
- // aapt resource value: 0x7F060000
- public static int abc_ab_share_pack_mtrl_alpha = 2131099648;
-
- // aapt resource value: 0x7F060001
- public static int abc_action_bar_item_background_material = 2131099649;
-
- // aapt resource value: 0x7F060002
- public static int abc_btn_borderless_material = 2131099650;
-
- // aapt resource value: 0x7F060003
- public static int abc_btn_check_material = 2131099651;
-
- // aapt resource value: 0x7F060004
- public static int abc_btn_check_to_on_mtrl_000 = 2131099652;
-
- // aapt resource value: 0x7F060005
- public static int abc_btn_check_to_on_mtrl_015 = 2131099653;
-
- // aapt resource value: 0x7F060006
- public static int abc_btn_colored_material = 2131099654;
-
- // aapt resource value: 0x7F060007
- public static int abc_btn_default_mtrl_shape = 2131099655;
-
- // aapt resource value: 0x7F060008
- public static int abc_btn_radio_material = 2131099656;
-
- // aapt resource value: 0x7F060009
- public static int abc_btn_radio_to_on_mtrl_000 = 2131099657;
-
- // aapt resource value: 0x7F06000A
- public static int abc_btn_radio_to_on_mtrl_015 = 2131099658;
-
- // aapt resource value: 0x7F06000B
- public static int abc_btn_switch_to_on_mtrl_00001 = 2131099659;
-
- // aapt resource value: 0x7F06000C
- public static int abc_btn_switch_to_on_mtrl_00012 = 2131099660;
-
- // aapt resource value: 0x7F06000D
- public static int abc_cab_background_internal_bg = 2131099661;
-
- // aapt resource value: 0x7F06000E
- public static int abc_cab_background_top_material = 2131099662;
-
- // aapt resource value: 0x7F06000F
- public static int abc_cab_background_top_mtrl_alpha = 2131099663;
-
- // aapt resource value: 0x7F060010
- public static int abc_control_background_material = 2131099664;
-
- // aapt resource value: 0x7F060011
- public static int abc_dialog_material_background = 2131099665;
-
- // aapt resource value: 0x7F060012
- public static int abc_edit_text_material = 2131099666;
-
- // aapt resource value: 0x7F060013
- public static int abc_ic_ab_back_material = 2131099667;
-
- // aapt resource value: 0x7F060014
- public static int abc_ic_arrow_drop_right_black_24dp = 2131099668;
-
- // aapt resource value: 0x7F060015
- public static int abc_ic_clear_material = 2131099669;
-
- // aapt resource value: 0x7F060016
- public static int abc_ic_commit_search_api_mtrl_alpha = 2131099670;
-
- // aapt resource value: 0x7F060017
- public static int abc_ic_go_search_api_material = 2131099671;
-
- // aapt resource value: 0x7F060018
- public static int abc_ic_menu_copy_mtrl_am_alpha = 2131099672;
-
- // aapt resource value: 0x7F060019
- public static int abc_ic_menu_cut_mtrl_alpha = 2131099673;
-
- // aapt resource value: 0x7F06001A
- public static int abc_ic_menu_overflow_material = 2131099674;
-
- // aapt resource value: 0x7F06001B
- public static int abc_ic_menu_paste_mtrl_am_alpha = 2131099675;
-
- // aapt resource value: 0x7F06001C
- public static int abc_ic_menu_selectall_mtrl_alpha = 2131099676;
-
- // aapt resource value: 0x7F06001D
- public static int abc_ic_menu_share_mtrl_alpha = 2131099677;
-
- // aapt resource value: 0x7F06001E
- public static int abc_ic_search_api_material = 2131099678;
-
- // aapt resource value: 0x7F06001F
- public static int abc_ic_star_black_16dp = 2131099679;
-
- // aapt resource value: 0x7F060020
- public static int abc_ic_star_black_36dp = 2131099680;
-
- // aapt resource value: 0x7F060021
- public static int abc_ic_star_black_48dp = 2131099681;
-
- // aapt resource value: 0x7F060022
- public static int abc_ic_star_half_black_16dp = 2131099682;
-
- // aapt resource value: 0x7F060023
- public static int abc_ic_star_half_black_36dp = 2131099683;
-
- // aapt resource value: 0x7F060024
- public static int abc_ic_star_half_black_48dp = 2131099684;
-
- // aapt resource value: 0x7F060025
- public static int abc_ic_voice_search_api_material = 2131099685;
-
- // aapt resource value: 0x7F060026
- public static int abc_item_background_holo_dark = 2131099686;
-
- // aapt resource value: 0x7F060027
- public static int abc_item_background_holo_light = 2131099687;
-
- // aapt resource value: 0x7F060028
- public static int abc_list_divider_material = 2131099688;
-
- // aapt resource value: 0x7F060029
- public static int abc_list_divider_mtrl_alpha = 2131099689;
-
- // aapt resource value: 0x7F06002A
- public static int abc_list_focused_holo = 2131099690;
-
- // aapt resource value: 0x7F06002B
- public static int abc_list_longpressed_holo = 2131099691;
-
- // aapt resource value: 0x7F06002C
- public static int abc_list_pressed_holo_dark = 2131099692;
-
- // aapt resource value: 0x7F06002D
- public static int abc_list_pressed_holo_light = 2131099693;
-
- // aapt resource value: 0x7F06002E
- public static int abc_list_selector_background_transition_holo_dark = 2131099694;
-
- // aapt resource value: 0x7F06002F
- public static int abc_list_selector_background_transition_holo_light = 2131099695;
-
- // aapt resource value: 0x7F060030
- public static int abc_list_selector_disabled_holo_dark = 2131099696;
-
- // aapt resource value: 0x7F060031
- public static int abc_list_selector_disabled_holo_light = 2131099697;
-
- // aapt resource value: 0x7F060032
- public static int abc_list_selector_holo_dark = 2131099698;
-
- // aapt resource value: 0x7F060033
- public static int abc_list_selector_holo_light = 2131099699;
-
- // aapt resource value: 0x7F060034
- public static int abc_menu_hardkey_panel_mtrl_mult = 2131099700;
-
- // aapt resource value: 0x7F060035
- public static int abc_popup_background_mtrl_mult = 2131099701;
-
- // aapt resource value: 0x7F060036
- public static int abc_ratingbar_indicator_material = 2131099702;
-
- // aapt resource value: 0x7F060037
- public static int abc_ratingbar_material = 2131099703;
-
- // aapt resource value: 0x7F060038
- public static int abc_ratingbar_small_material = 2131099704;
-
- // aapt resource value: 0x7F060039
- public static int abc_scrubber_control_off_mtrl_alpha = 2131099705;
-
- // aapt resource value: 0x7F06003A
- public static int abc_scrubber_control_to_pressed_mtrl_000 = 2131099706;
-
- // aapt resource value: 0x7F06003B
- public static int abc_scrubber_control_to_pressed_mtrl_005 = 2131099707;
-
- // aapt resource value: 0x7F06003C
- public static int abc_scrubber_primary_mtrl_alpha = 2131099708;
-
- // aapt resource value: 0x7F06003D
- public static int abc_scrubber_track_mtrl_alpha = 2131099709;
-
- // aapt resource value: 0x7F06003E
- public static int abc_seekbar_thumb_material = 2131099710;
-
- // aapt resource value: 0x7F06003F
- public static int abc_seekbar_tick_mark_material = 2131099711;
-
- // aapt resource value: 0x7F060040
- public static int abc_seekbar_track_material = 2131099712;
-
- // aapt resource value: 0x7F060041
- public static int abc_spinner_mtrl_am_alpha = 2131099713;
-
- // aapt resource value: 0x7F060042
- public static int abc_spinner_textfield_background_material = 2131099714;
-
- // aapt resource value: 0x7F060043
- public static int abc_switch_thumb_material = 2131099715;
-
- // aapt resource value: 0x7F060044
- public static int abc_switch_track_mtrl_alpha = 2131099716;
-
- // aapt resource value: 0x7F060045
- public static int abc_tab_indicator_material = 2131099717;
-
- // aapt resource value: 0x7F060046
- public static int abc_tab_indicator_mtrl_alpha = 2131099718;
-
- // aapt resource value: 0x7F06004E
- public static int abc_textfield_activated_mtrl_alpha = 2131099726;
-
- // aapt resource value: 0x7F06004F
- public static int abc_textfield_default_mtrl_alpha = 2131099727;
-
- // aapt resource value: 0x7F060050
- public static int abc_textfield_search_activated_mtrl_alpha = 2131099728;
-
- // aapt resource value: 0x7F060051
- public static int abc_textfield_search_default_mtrl_alpha = 2131099729;
-
- // aapt resource value: 0x7F060052
- public static int abc_textfield_search_material = 2131099730;
-
- // aapt resource value: 0x7F060047
- public static int abc_text_cursor_material = 2131099719;
-
- // aapt resource value: 0x7F060048
- public static int abc_text_select_handle_left_mtrl_dark = 2131099720;
-
- // aapt resource value: 0x7F060049
- public static int abc_text_select_handle_left_mtrl_light = 2131099721;
-
- // aapt resource value: 0x7F06004A
- public static int abc_text_select_handle_middle_mtrl_dark = 2131099722;
-
- // aapt resource value: 0x7F06004B
- public static int abc_text_select_handle_middle_mtrl_light = 2131099723;
-
- // aapt resource value: 0x7F06004C
- public static int abc_text_select_handle_right_mtrl_dark = 2131099724;
-
- // aapt resource value: 0x7F06004D
- public static int abc_text_select_handle_right_mtrl_light = 2131099725;
-
- // aapt resource value: 0x7F060053
- public static int abc_vector_test = 2131099731;
-
- // aapt resource value: 0x7F060054
- public static int notification_action_background = 2131099732;
-
- // aapt resource value: 0x7F060055
- public static int notification_bg = 2131099733;
-
- // aapt resource value: 0x7F060056
- public static int notification_bg_low = 2131099734;
-
- // aapt resource value: 0x7F060057
- public static int notification_bg_low_normal = 2131099735;
-
- // aapt resource value: 0x7F060058
- public static int notification_bg_low_pressed = 2131099736;
-
- // aapt resource value: 0x7F060059
- public static int notification_bg_normal = 2131099737;
-
- // aapt resource value: 0x7F06005A
- public static int notification_bg_normal_pressed = 2131099738;
-
- // aapt resource value: 0x7F06005B
- public static int notification_icon_background = 2131099739;
-
- // aapt resource value: 0x7F06005C
- public static int notification_template_icon_bg = 2131099740;
-
- // aapt resource value: 0x7F06005D
- public static int notification_template_icon_low_bg = 2131099741;
-
- // aapt resource value: 0x7F06005E
- public static int notification_tile_bg = 2131099742;
-
- // aapt resource value: 0x7F06005F
- public static int notify_panel_notification_icon_bg = 2131099743;
-
- // aapt resource value: 0x7F060060
- public static int tooltip_frame_dark = 2131099744;
-
- // aapt resource value: 0x7F060061
- public static int tooltip_frame_light = 2131099745;
-
- static Drawable()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Drawable()
- {
- }
- }
-
- public partial class Id
- {
-
- // aapt resource value: 0x7F070017
- public static int actions = 2131165207;
-
- // aapt resource value: 0x7F070006
- public static int action_bar = 2131165190;
-
- // aapt resource value: 0x7F070007
- public static int action_bar_activity_content = 2131165191;
-
- // aapt resource value: 0x7F070008
- public static int action_bar_container = 2131165192;
-
- // aapt resource value: 0x7F070009
- public static int action_bar_root = 2131165193;
-
- // aapt resource value: 0x7F07000A
- public static int action_bar_spinner = 2131165194;
-
- // aapt resource value: 0x7F07000B
- public static int action_bar_subtitle = 2131165195;
-
- // aapt resource value: 0x7F07000C
- public static int action_bar_title = 2131165196;
-
- // aapt resource value: 0x7F07000D
- public static int action_container = 2131165197;
-
- // aapt resource value: 0x7F07000E
- public static int action_context_bar = 2131165198;
-
- // aapt resource value: 0x7F07000F
- public static int action_divider = 2131165199;
-
- // aapt resource value: 0x7F070010
- public static int action_image = 2131165200;
-
- // aapt resource value: 0x7F070011
- public static int action_menu_divider = 2131165201;
-
- // aapt resource value: 0x7F070012
- public static int action_menu_presenter = 2131165202;
-
- // aapt resource value: 0x7F070013
- public static int action_mode_bar = 2131165203;
-
- // aapt resource value: 0x7F070014
- public static int action_mode_bar_stub = 2131165204;
-
- // aapt resource value: 0x7F070015
- public static int action_mode_close_button = 2131165205;
-
- // aapt resource value: 0x7F070016
- public static int action_text = 2131165206;
-
- // aapt resource value: 0x7F070018
- public static int activity_chooser_view_content = 2131165208;
-
- // aapt resource value: 0x7F070019
- public static int add = 2131165209;
-
- // aapt resource value: 0x7F07001A
- public static int alertTitle = 2131165210;
-
- // aapt resource value: 0x7F07001B
- public static int all = 2131165211;
-
- // aapt resource value: 0x7F070000
- public static int ALT = 2131165184;
-
- // aapt resource value: 0x7F07001C
- public static int always = 2131165212;
-
- // aapt resource value: 0x7F07001D
- public static int async = 2131165213;
-
- // aapt resource value: 0x7F07001E
- public static int beginning = 2131165214;
-
- // aapt resource value: 0x7F07001F
- public static int blocking = 2131165215;
-
- // aapt resource value: 0x7F070020
- public static int bottom = 2131165216;
-
- // aapt resource value: 0x7F070021
- public static int buttonPanel = 2131165217;
-
- // aapt resource value: 0x7F070022
- public static int center = 2131165218;
-
- // aapt resource value: 0x7F070023
- public static int center_horizontal = 2131165219;
-
- // aapt resource value: 0x7F070024
- public static int center_vertical = 2131165220;
-
- // aapt resource value: 0x7F070025
- public static int checkbox = 2131165221;
-
- // aapt resource value: 0x7F070026
- public static int chronometer = 2131165222;
-
- // aapt resource value: 0x7F070027
- public static int clip_horizontal = 2131165223;
-
- // aapt resource value: 0x7F070028
- public static int clip_vertical = 2131165224;
-
- // aapt resource value: 0x7F070029
- public static int collapseActionView = 2131165225;
-
- // aapt resource value: 0x7F07002A
- public static int content = 2131165226;
-
- // aapt resource value: 0x7F07002B
- public static int contentPanel = 2131165227;
-
- // aapt resource value: 0x7F070001
- public static int CTRL = 2131165185;
-
- // aapt resource value: 0x7F07002C
- public static int custom = 2131165228;
-
- // aapt resource value: 0x7F07002D
- public static int customPanel = 2131165229;
-
- // aapt resource value: 0x7F07002E
- public static int decor_content_parent = 2131165230;
-
- // aapt resource value: 0x7F07002F
- public static int default_activity_button = 2131165231;
-
- // aapt resource value: 0x7F070030
- public static int disableHome = 2131165232;
-
- // aapt resource value: 0x7F070031
- public static int edit_query = 2131165233;
-
- // aapt resource value: 0x7F070032
- public static int end = 2131165234;
-
- // aapt resource value: 0x7F070034
- public static int expanded_menu = 2131165236;
-
- // aapt resource value: 0x7F070033
- public static int expand_activities_button = 2131165235;
-
- // aapt resource value: 0x7F070035
- public static int fill = 2131165237;
-
- // aapt resource value: 0x7F070036
- public static int fill_horizontal = 2131165238;
-
- // aapt resource value: 0x7F070037
- public static int fill_vertical = 2131165239;
-
- // aapt resource value: 0x7F070038
- public static int forever = 2131165240;
-
- // aapt resource value: 0x7F070002
- public static int FUNCTION = 2131165186;
-
- // aapt resource value: 0x7F070039
- public static int group_divider = 2131165241;
-
- // aapt resource value: 0x7F07003A
- public static int home = 2131165242;
-
- // aapt resource value: 0x7F07003B
- public static int homeAsUp = 2131165243;
-
- // aapt resource value: 0x7F07003C
- public static int icon = 2131165244;
-
- // aapt resource value: 0x7F07003D
- public static int icon_group = 2131165245;
-
- // aapt resource value: 0x7F07003E
- public static int ifRoom = 2131165246;
-
- // aapt resource value: 0x7F07003F
- public static int image = 2131165247;
-
- // aapt resource value: 0x7F070040
- public static int info = 2131165248;
-
- // aapt resource value: 0x7F070041
- public static int italic = 2131165249;
-
- // aapt resource value: 0x7F070042
- public static int left = 2131165250;
-
- // aapt resource value: 0x7F070043
- public static int line1 = 2131165251;
-
- // aapt resource value: 0x7F070044
- public static int line3 = 2131165252;
-
- // aapt resource value: 0x7F070045
- public static int listMode = 2131165253;
-
- // aapt resource value: 0x7F070046
- public static int list_item = 2131165254;
-
- // aapt resource value: 0x7F070047
- public static int message = 2131165255;
-
- // aapt resource value: 0x7F070003
- public static int META = 2131165187;
-
- // aapt resource value: 0x7F070048
- public static int middle = 2131165256;
-
- // aapt resource value: 0x7F070049
- public static int multiply = 2131165257;
-
- // aapt resource value: 0x7F07004A
- public static int never = 2131165258;
-
- // aapt resource value: 0x7F07004B
- public static int none = 2131165259;
-
- // aapt resource value: 0x7F07004C
- public static int normal = 2131165260;
-
- // aapt resource value: 0x7F07004D
- public static int notification_background = 2131165261;
-
- // aapt resource value: 0x7F07004E
- public static int notification_main_column = 2131165262;
-
- // aapt resource value: 0x7F07004F
- public static int notification_main_column_container = 2131165263;
-
- // aapt resource value: 0x7F070050
- public static int parentPanel = 2131165264;
-
- // aapt resource value: 0x7F070051
- public static int progress_circular = 2131165265;
-
- // aapt resource value: 0x7F070052
- public static int progress_horizontal = 2131165266;
-
- // aapt resource value: 0x7F070053
- public static int radio = 2131165267;
-
- // aapt resource value: 0x7F070054
- public static int right = 2131165268;
-
- // aapt resource value: 0x7F070055
- public static int right_icon = 2131165269;
-
- // aapt resource value: 0x7F070056
- public static int right_side = 2131165270;
-
- // aapt resource value: 0x7F070057
- public static int screen = 2131165271;
-
- // aapt resource value: 0x7F070058
- public static int scrollIndicatorDown = 2131165272;
-
- // aapt resource value: 0x7F070059
- public static int scrollIndicatorUp = 2131165273;
-
- // aapt resource value: 0x7F07005A
- public static int scrollView = 2131165274;
-
- // aapt resource value: 0x7F07005B
- public static int search_badge = 2131165275;
-
- // aapt resource value: 0x7F07005C
- public static int search_bar = 2131165276;
-
- // aapt resource value: 0x7F07005D
- public static int search_button = 2131165277;
-
- // aapt resource value: 0x7F07005E
- public static int search_close_btn = 2131165278;
-
- // aapt resource value: 0x7F07005F
- public static int search_edit_frame = 2131165279;
-
- // aapt resource value: 0x7F070060
- public static int search_go_btn = 2131165280;
-
- // aapt resource value: 0x7F070061
- public static int search_mag_icon = 2131165281;
-
- // aapt resource value: 0x7F070062
- public static int search_plate = 2131165282;
-
- // aapt resource value: 0x7F070063
- public static int search_src_text = 2131165283;
-
- // aapt resource value: 0x7F070064
- public static int search_voice_btn = 2131165284;
-
- // aapt resource value: 0x7F070065
- public static int select_dialog_listview = 2131165285;
-
- // aapt resource value: 0x7F070004
- public static int SHIFT = 2131165188;
-
- // aapt resource value: 0x7F070066
- public static int shortcut = 2131165286;
-
- // aapt resource value: 0x7F070067
- public static int showCustom = 2131165287;
-
- // aapt resource value: 0x7F070068
- public static int showHome = 2131165288;
-
- // aapt resource value: 0x7F070069
- public static int showTitle = 2131165289;
-
- // aapt resource value: 0x7F07006A
- public static int spacer = 2131165290;
-
- // aapt resource value: 0x7F07006B
- public static int split_action_bar = 2131165291;
-
- // aapt resource value: 0x7F07006C
- public static int src_atop = 2131165292;
-
- // aapt resource value: 0x7F07006D
- public static int src_in = 2131165293;
-
- // aapt resource value: 0x7F07006E
- public static int src_over = 2131165294;
-
- // aapt resource value: 0x7F07006F
- public static int start = 2131165295;
-
- // aapt resource value: 0x7F070070
- public static int submenuarrow = 2131165296;
-
- // aapt resource value: 0x7F070071
- public static int submit_area = 2131165297;
-
- // aapt resource value: 0x7F070005
- public static int SYM = 2131165189;
-
- // aapt resource value: 0x7F070072
- public static int tabMode = 2131165298;
-
- // aapt resource value: 0x7F070073
- public static int tag_transition_group = 2131165299;
-
- // aapt resource value: 0x7F070074
- public static int tag_unhandled_key_event_manager = 2131165300;
-
- // aapt resource value: 0x7F070075
- public static int tag_unhandled_key_listeners = 2131165301;
-
- // aapt resource value: 0x7F070076
- public static int text = 2131165302;
-
- // aapt resource value: 0x7F070077
- public static int text2 = 2131165303;
-
- // aapt resource value: 0x7F070078
- public static int textSpacerNoButtons = 2131165304;
-
- // aapt resource value: 0x7F070079
- public static int textSpacerNoTitle = 2131165305;
-
- // aapt resource value: 0x7F07007A
- public static int time = 2131165306;
-
- // aapt resource value: 0x7F07007B
- public static int title = 2131165307;
-
- // aapt resource value: 0x7F07007C
- public static int titleDividerNoCustom = 2131165308;
-
- // aapt resource value: 0x7F07007D
- public static int title_template = 2131165309;
-
- // aapt resource value: 0x7F07007E
- public static int top = 2131165310;
-
- // aapt resource value: 0x7F07007F
- public static int topPanel = 2131165311;
-
- // aapt resource value: 0x7F070080
- public static int uniform = 2131165312;
-
- // aapt resource value: 0x7F070081
- public static int up = 2131165313;
-
- // aapt resource value: 0x7F070082
- public static int useLogo = 2131165314;
-
- // aapt resource value: 0x7F070083
- public static int withText = 2131165315;
-
- // aapt resource value: 0x7F070084
- public static int wrap_content = 2131165316;
-
- static Id()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Id()
- {
- }
- }
-
- public partial class Integer
- {
-
- // aapt resource value: 0x7F080000
- public static int abc_config_activityDefaultDur = 2131230720;
-
- // aapt resource value: 0x7F080001
- public static int abc_config_activityShortDur = 2131230721;
-
- // aapt resource value: 0x7F080002
- public static int cancel_button_image_alpha = 2131230722;
-
- // aapt resource value: 0x7F080003
- public static int config_tooltipAnimTime = 2131230723;
-
- // aapt resource value: 0x7F080004
- public static int status_bar_notification_info_maxnum = 2131230724;
-
- static Integer()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Integer()
- {
- }
- }
-
- public partial class Layout
- {
-
- // aapt resource value: 0x7F090000
- public static int abc_action_bar_title_item = 2131296256;
-
- // aapt resource value: 0x7F090001
- public static int abc_action_bar_up_container = 2131296257;
-
- // aapt resource value: 0x7F090002
- public static int abc_action_menu_item_layout = 2131296258;
-
- // aapt resource value: 0x7F090003
- public static int abc_action_menu_layout = 2131296259;
-
- // aapt resource value: 0x7F090004
- public static int abc_action_mode_bar = 2131296260;
-
- // aapt resource value: 0x7F090005
- public static int abc_action_mode_close_item_material = 2131296261;
-
- // aapt resource value: 0x7F090006
- public static int abc_activity_chooser_view = 2131296262;
-
- // aapt resource value: 0x7F090007
- public static int abc_activity_chooser_view_list_item = 2131296263;
-
- // aapt resource value: 0x7F090008
- public static int abc_alert_dialog_button_bar_material = 2131296264;
-
- // aapt resource value: 0x7F090009
- public static int abc_alert_dialog_material = 2131296265;
-
- // aapt resource value: 0x7F09000A
- public static int abc_alert_dialog_title_material = 2131296266;
-
- // aapt resource value: 0x7F09000B
- public static int abc_cascading_menu_item_layout = 2131296267;
-
- // aapt resource value: 0x7F09000C
- public static int abc_dialog_title_material = 2131296268;
-
- // aapt resource value: 0x7F09000D
- public static int abc_expanded_menu_layout = 2131296269;
-
- // aapt resource value: 0x7F09000E
- public static int abc_list_menu_item_checkbox = 2131296270;
-
- // aapt resource value: 0x7F09000F
- public static int abc_list_menu_item_icon = 2131296271;
-
- // aapt resource value: 0x7F090010
- public static int abc_list_menu_item_layout = 2131296272;
-
- // aapt resource value: 0x7F090011
- public static int abc_list_menu_item_radio = 2131296273;
-
- // aapt resource value: 0x7F090012
- public static int abc_popup_menu_header_item_layout = 2131296274;
-
- // aapt resource value: 0x7F090013
- public static int abc_popup_menu_item_layout = 2131296275;
-
- // aapt resource value: 0x7F090014
- public static int abc_screen_content_include = 2131296276;
-
- // aapt resource value: 0x7F090015
- public static int abc_screen_simple = 2131296277;
-
- // aapt resource value: 0x7F090016
- public static int abc_screen_simple_overlay_action_mode = 2131296278;
-
- // aapt resource value: 0x7F090017
- public static int abc_screen_toolbar = 2131296279;
-
- // aapt resource value: 0x7F090018
- public static int abc_search_dropdown_item_icons_2line = 2131296280;
-
- // aapt resource value: 0x7F090019
- public static int abc_search_view = 2131296281;
-
- // aapt resource value: 0x7F09001A
- public static int abc_select_dialog_material = 2131296282;
-
- // aapt resource value: 0x7F09001B
- public static int abc_tooltip = 2131296283;
-
- // aapt resource value: 0x7F09001C
- public static int notification_action = 2131296284;
-
- // aapt resource value: 0x7F09001D
- public static int notification_action_tombstone = 2131296285;
-
- // aapt resource value: 0x7F09001E
- public static int notification_template_custom_big = 2131296286;
-
- // aapt resource value: 0x7F09001F
- public static int notification_template_icon_group = 2131296287;
-
- // aapt resource value: 0x7F090020
- public static int notification_template_part_chronometer = 2131296288;
-
- // aapt resource value: 0x7F090021
- public static int notification_template_part_time = 2131296289;
-
- // aapt resource value: 0x7F090022
- public static int select_dialog_item_material = 2131296290;
-
- // aapt resource value: 0x7F090023
- public static int select_dialog_multichoice_material = 2131296291;
-
- // aapt resource value: 0x7F090024
- public static int select_dialog_singlechoice_material = 2131296292;
-
- // aapt resource value: 0x7F090025
- public static int support_simple_spinner_dropdown_item = 2131296293;
-
- static Layout()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Layout()
- {
- }
- }
-
- public partial class String
- {
-
- // aapt resource value: 0x7F0A0000
- public static int abc_action_bar_home_description = 2131361792;
-
- // aapt resource value: 0x7F0A0001
- public static int abc_action_bar_up_description = 2131361793;
-
- // aapt resource value: 0x7F0A0002
- public static int abc_action_menu_overflow_description = 2131361794;
-
- // aapt resource value: 0x7F0A0003
- public static int abc_action_mode_done = 2131361795;
-
- // aapt resource value: 0x7F0A0005
- public static int abc_activitychooserview_choose_application = 2131361797;
-
- // aapt resource value: 0x7F0A0004
- public static int abc_activity_chooser_view_see_all = 2131361796;
-
- // aapt resource value: 0x7F0A0006
- public static int abc_capital_off = 2131361798;
-
- // aapt resource value: 0x7F0A0007
- public static int abc_capital_on = 2131361799;
-
- // aapt resource value: 0x7F0A0008
- public static int abc_font_family_body_1_material = 2131361800;
-
- // aapt resource value: 0x7F0A0009
- public static int abc_font_family_body_2_material = 2131361801;
-
- // aapt resource value: 0x7F0A000A
- public static int abc_font_family_button_material = 2131361802;
-
- // aapt resource value: 0x7F0A000B
- public static int abc_font_family_caption_material = 2131361803;
-
- // aapt resource value: 0x7F0A000C
- public static int abc_font_family_display_1_material = 2131361804;
-
- // aapt resource value: 0x7F0A000D
- public static int abc_font_family_display_2_material = 2131361805;
-
- // aapt resource value: 0x7F0A000E
- public static int abc_font_family_display_3_material = 2131361806;
-
- // aapt resource value: 0x7F0A000F
- public static int abc_font_family_display_4_material = 2131361807;
-
- // aapt resource value: 0x7F0A0010
- public static int abc_font_family_headline_material = 2131361808;
-
- // aapt resource value: 0x7F0A0011
- public static int abc_font_family_menu_material = 2131361809;
-
- // aapt resource value: 0x7F0A0012
- public static int abc_font_family_subhead_material = 2131361810;
-
- // aapt resource value: 0x7F0A0013
- public static int abc_font_family_title_material = 2131361811;
-
- // aapt resource value: 0x7F0A0014
- public static int abc_menu_alt_shortcut_label = 2131361812;
-
- // aapt resource value: 0x7F0A0015
- public static int abc_menu_ctrl_shortcut_label = 2131361813;
-
- // aapt resource value: 0x7F0A0016
- public static int abc_menu_delete_shortcut_label = 2131361814;
-
- // aapt resource value: 0x7F0A0017
- public static int abc_menu_enter_shortcut_label = 2131361815;
-
- // aapt resource value: 0x7F0A0018
- public static int abc_menu_function_shortcut_label = 2131361816;
-
- // aapt resource value: 0x7F0A0019
- public static int abc_menu_meta_shortcut_label = 2131361817;
-
- // aapt resource value: 0x7F0A001A
- public static int abc_menu_shift_shortcut_label = 2131361818;
-
- // aapt resource value: 0x7F0A001B
- public static int abc_menu_space_shortcut_label = 2131361819;
-
- // aapt resource value: 0x7F0A001C
- public static int abc_menu_sym_shortcut_label = 2131361820;
-
- // aapt resource value: 0x7F0A001D
- public static int abc_prepend_shortcut_label = 2131361821;
-
- // aapt resource value: 0x7F0A001F
- public static int abc_searchview_description_clear = 2131361823;
-
- // aapt resource value: 0x7F0A0020
- public static int abc_searchview_description_query = 2131361824;
-
- // aapt resource value: 0x7F0A0021
- public static int abc_searchview_description_search = 2131361825;
-
- // aapt resource value: 0x7F0A0022
- public static int abc_searchview_description_submit = 2131361826;
-
- // aapt resource value: 0x7F0A0023
- public static int abc_searchview_description_voice = 2131361827;
-
- // aapt resource value: 0x7F0A001E
- public static int abc_search_hint = 2131361822;
-
- // aapt resource value: 0x7F0A0024
- public static int abc_shareactionprovider_share_with = 2131361828;
-
- // aapt resource value: 0x7F0A0025
- public static int abc_shareactionprovider_share_with_application = 2131361829;
-
- // aapt resource value: 0x7F0A0026
- public static int abc_toolbar_collapse_description = 2131361830;
-
- // aapt resource value: 0x7F0A0027
- public static int app_name = 2131361831;
-
- // aapt resource value: 0x7F0A0028
- public static int hello = 2131361832;
-
- // aapt resource value: 0x7F0A0029
- public static int search_menu_title = 2131361833;
-
- // aapt resource value: 0x7F0A002A
- public static int status_bar_notification_info_overflow = 2131361834;
-
- static String()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private String()
- {
- }
- }
-
- public partial class Style
- {
-
- // aapt resource value: 0x7F0B0000
- public static int AlertDialog_AppCompat = 2131427328;
-
- // aapt resource value: 0x7F0B0001
- public static int AlertDialog_AppCompat_Light = 2131427329;
-
- // aapt resource value: 0x7F0B0002
- public static int Animation_AppCompat_Dialog = 2131427330;
-
- // aapt resource value: 0x7F0B0003
- public static int Animation_AppCompat_DropDownUp = 2131427331;
-
- // aapt resource value: 0x7F0B0004
- public static int Animation_AppCompat_Tooltip = 2131427332;
-
- // aapt resource value: 0x7F0B0005
- public static int Base_AlertDialog_AppCompat = 2131427333;
-
- // aapt resource value: 0x7F0B0006
- public static int Base_AlertDialog_AppCompat_Light = 2131427334;
-
- // aapt resource value: 0x7F0B0007
- public static int Base_Animation_AppCompat_Dialog = 2131427335;
-
- // aapt resource value: 0x7F0B0008
- public static int Base_Animation_AppCompat_DropDownUp = 2131427336;
-
- // aapt resource value: 0x7F0B0009
- public static int Base_Animation_AppCompat_Tooltip = 2131427337;
-
- // aapt resource value: 0x7F0B000B
- public static int Base_DialogWindowTitleBackground_AppCompat = 2131427339;
-
- // aapt resource value: 0x7F0B000A
- public static int Base_DialogWindowTitle_AppCompat = 2131427338;
-
- // aapt resource value: 0x7F0B000C
- public static int Base_TextAppearance_AppCompat = 2131427340;
-
- // aapt resource value: 0x7F0B000D
- public static int Base_TextAppearance_AppCompat_Body1 = 2131427341;
-
- // aapt resource value: 0x7F0B000E
- public static int Base_TextAppearance_AppCompat_Body2 = 2131427342;
-
- // aapt resource value: 0x7F0B000F
- public static int Base_TextAppearance_AppCompat_Button = 2131427343;
-
- // aapt resource value: 0x7F0B0010
- public static int Base_TextAppearance_AppCompat_Caption = 2131427344;
-
- // aapt resource value: 0x7F0B0011
- public static int Base_TextAppearance_AppCompat_Display1 = 2131427345;
-
- // aapt resource value: 0x7F0B0012
- public static int Base_TextAppearance_AppCompat_Display2 = 2131427346;
-
- // aapt resource value: 0x7F0B0013
- public static int Base_TextAppearance_AppCompat_Display3 = 2131427347;
-
- // aapt resource value: 0x7F0B0014
- public static int Base_TextAppearance_AppCompat_Display4 = 2131427348;
-
- // aapt resource value: 0x7F0B0015
- public static int Base_TextAppearance_AppCompat_Headline = 2131427349;
-
- // aapt resource value: 0x7F0B0016
- public static int Base_TextAppearance_AppCompat_Inverse = 2131427350;
-
- // aapt resource value: 0x7F0B0017
- public static int Base_TextAppearance_AppCompat_Large = 2131427351;
-
- // aapt resource value: 0x7F0B0018
- public static int Base_TextAppearance_AppCompat_Large_Inverse = 2131427352;
-
- // aapt resource value: 0x7F0B0019
- public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131427353;
-
- // aapt resource value: 0x7F0B001A
- public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131427354;
-
- // aapt resource value: 0x7F0B001B
- public static int Base_TextAppearance_AppCompat_Medium = 2131427355;
-
- // aapt resource value: 0x7F0B001C
- public static int Base_TextAppearance_AppCompat_Medium_Inverse = 2131427356;
-
- // aapt resource value: 0x7F0B001D
- public static int Base_TextAppearance_AppCompat_Menu = 2131427357;
-
- // aapt resource value: 0x7F0B001E
- public static int Base_TextAppearance_AppCompat_SearchResult = 2131427358;
-
- // aapt resource value: 0x7F0B001F
- public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131427359;
-
- // aapt resource value: 0x7F0B0020
- public static int Base_TextAppearance_AppCompat_SearchResult_Title = 2131427360;
-
- // aapt resource value: 0x7F0B0021
- public static int Base_TextAppearance_AppCompat_Small = 2131427361;
-
- // aapt resource value: 0x7F0B0022
- public static int Base_TextAppearance_AppCompat_Small_Inverse = 2131427362;
-
- // aapt resource value: 0x7F0B0023
- public static int Base_TextAppearance_AppCompat_Subhead = 2131427363;
-
- // aapt resource value: 0x7F0B0024
- public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131427364;
-
- // aapt resource value: 0x7F0B0025
- public static int Base_TextAppearance_AppCompat_Title = 2131427365;
-
- // aapt resource value: 0x7F0B0026
- public static int Base_TextAppearance_AppCompat_Title_Inverse = 2131427366;
-
- // aapt resource value: 0x7F0B0027
- public static int Base_TextAppearance_AppCompat_Tooltip = 2131427367;
-
- // aapt resource value: 0x7F0B0028
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131427368;
-
- // aapt resource value: 0x7F0B0029
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131427369;
-
- // aapt resource value: 0x7F0B002A
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131427370;
-
- // aapt resource value: 0x7F0B002B
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131427371;
-
- // aapt resource value: 0x7F0B002C
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131427372;
-
- // aapt resource value: 0x7F0B002D
- public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131427373;
-
- // aapt resource value: 0x7F0B002E
- public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131427374;
-
- // aapt resource value: 0x7F0B002F
- public static int Base_TextAppearance_AppCompat_Widget_Button = 2131427375;
-
- // aapt resource value: 0x7F0B0030
- public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131427376;
-
- // aapt resource value: 0x7F0B0031
- public static int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131427377;
-
- // aapt resource value: 0x7F0B0032
- public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131427378;
-
- // aapt resource value: 0x7F0B0033
- public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131427379;
-
- // aapt resource value: 0x7F0B0034
- public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131427380;
-
- // aapt resource value: 0x7F0B0035
- public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131427381;
-
- // aapt resource value: 0x7F0B0036
- public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131427382;
-
- // aapt resource value: 0x7F0B0037
- public static int Base_TextAppearance_AppCompat_Widget_Switch = 2131427383;
-
- // aapt resource value: 0x7F0B0038
- public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131427384;
-
- // aapt resource value: 0x7F0B0039
- public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131427385;
-
- // aapt resource value: 0x7F0B003A
- public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131427386;
-
- // aapt resource value: 0x7F0B003B
- public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131427387;
-
- // aapt resource value: 0x7F0B004A
- public static int Base_ThemeOverlay_AppCompat = 2131427402;
-
- // aapt resource value: 0x7F0B004B
- public static int Base_ThemeOverlay_AppCompat_ActionBar = 2131427403;
-
- // aapt resource value: 0x7F0B004C
- public static int Base_ThemeOverlay_AppCompat_Dark = 2131427404;
-
- // aapt resource value: 0x7F0B004D
- public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131427405;
-
- // aapt resource value: 0x7F0B004E
- public static int Base_ThemeOverlay_AppCompat_Dialog = 2131427406;
-
- // aapt resource value: 0x7F0B004F
- public static int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131427407;
-
- // aapt resource value: 0x7F0B0050
- public static int Base_ThemeOverlay_AppCompat_Light = 2131427408;
-
- // aapt resource value: 0x7F0B003C
- public static int Base_Theme_AppCompat = 2131427388;
-
- // aapt resource value: 0x7F0B003D
- public static int Base_Theme_AppCompat_CompactMenu = 2131427389;
-
- // aapt resource value: 0x7F0B003E
- public static int Base_Theme_AppCompat_Dialog = 2131427390;
-
- // aapt resource value: 0x7F0B0042
- public static int Base_Theme_AppCompat_DialogWhenLarge = 2131427394;
-
- // aapt resource value: 0x7F0B003F
- public static int Base_Theme_AppCompat_Dialog_Alert = 2131427391;
-
- // aapt resource value: 0x7F0B0040
- public static int Base_Theme_AppCompat_Dialog_FixedSize = 2131427392;
-
- // aapt resource value: 0x7F0B0041
- public static int Base_Theme_AppCompat_Dialog_MinWidth = 2131427393;
-
- // aapt resource value: 0x7F0B0043
- public static int Base_Theme_AppCompat_Light = 2131427395;
-
- // aapt resource value: 0x7F0B0044
- public static int Base_Theme_AppCompat_Light_DarkActionBar = 2131427396;
-
- // aapt resource value: 0x7F0B0045
- public static int Base_Theme_AppCompat_Light_Dialog = 2131427397;
-
- // aapt resource value: 0x7F0B0049
- public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131427401;
-
- // aapt resource value: 0x7F0B0046
- public static int Base_Theme_AppCompat_Light_Dialog_Alert = 2131427398;
-
- // aapt resource value: 0x7F0B0047
- public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131427399;
-
- // aapt resource value: 0x7F0B0048
- public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131427400;
-
- // aapt resource value: 0x7F0B0055
- public static int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131427413;
-
- // aapt resource value: 0x7F0B0051
- public static int Base_V21_Theme_AppCompat = 2131427409;
-
- // aapt resource value: 0x7F0B0052
- public static int Base_V21_Theme_AppCompat_Dialog = 2131427410;
-
- // aapt resource value: 0x7F0B0053
- public static int Base_V21_Theme_AppCompat_Light = 2131427411;
-
- // aapt resource value: 0x7F0B0054
- public static int Base_V21_Theme_AppCompat_Light_Dialog = 2131427412;
-
- // aapt resource value: 0x7F0B0056
- public static int Base_V22_Theme_AppCompat = 2131427414;
-
- // aapt resource value: 0x7F0B0057
- public static int Base_V22_Theme_AppCompat_Light = 2131427415;
-
- // aapt resource value: 0x7F0B0058
- public static int Base_V23_Theme_AppCompat = 2131427416;
-
- // aapt resource value: 0x7F0B0059
- public static int Base_V23_Theme_AppCompat_Light = 2131427417;
-
- // aapt resource value: 0x7F0B005A
- public static int Base_V26_Theme_AppCompat = 2131427418;
-
- // aapt resource value: 0x7F0B005B
- public static int Base_V26_Theme_AppCompat_Light = 2131427419;
-
- // aapt resource value: 0x7F0B005C
- public static int Base_V26_Widget_AppCompat_Toolbar = 2131427420;
-
- // aapt resource value: 0x7F0B005D
- public static int Base_V28_Theme_AppCompat = 2131427421;
-
- // aapt resource value: 0x7F0B005E
- public static int Base_V28_Theme_AppCompat_Light = 2131427422;
-
- // aapt resource value: 0x7F0B0063
- public static int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131427427;
-
- // aapt resource value: 0x7F0B005F
- public static int Base_V7_Theme_AppCompat = 2131427423;
-
- // aapt resource value: 0x7F0B0060
- public static int Base_V7_Theme_AppCompat_Dialog = 2131427424;
-
- // aapt resource value: 0x7F0B0061
- public static int Base_V7_Theme_AppCompat_Light = 2131427425;
-
- // aapt resource value: 0x7F0B0062
- public static int Base_V7_Theme_AppCompat_Light_Dialog = 2131427426;
-
- // aapt resource value: 0x7F0B0064
- public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131427428;
-
- // aapt resource value: 0x7F0B0065
- public static int Base_V7_Widget_AppCompat_EditText = 2131427429;
-
- // aapt resource value: 0x7F0B0066
- public static int Base_V7_Widget_AppCompat_Toolbar = 2131427430;
-
- // aapt resource value: 0x7F0B0067
- public static int Base_Widget_AppCompat_ActionBar = 2131427431;
-
- // aapt resource value: 0x7F0B0068
- public static int Base_Widget_AppCompat_ActionBar_Solid = 2131427432;
-
- // aapt resource value: 0x7F0B0069
- public static int Base_Widget_AppCompat_ActionBar_TabBar = 2131427433;
-
- // aapt resource value: 0x7F0B006A
- public static int Base_Widget_AppCompat_ActionBar_TabText = 2131427434;
-
- // aapt resource value: 0x7F0B006B
- public static int Base_Widget_AppCompat_ActionBar_TabView = 2131427435;
-
- // aapt resource value: 0x7F0B006C
- public static int Base_Widget_AppCompat_ActionButton = 2131427436;
-
- // aapt resource value: 0x7F0B006D
- public static int Base_Widget_AppCompat_ActionButton_CloseMode = 2131427437;
-
- // aapt resource value: 0x7F0B006E
- public static int Base_Widget_AppCompat_ActionButton_Overflow = 2131427438;
-
- // aapt resource value: 0x7F0B006F
- public static int Base_Widget_AppCompat_ActionMode = 2131427439;
-
- // aapt resource value: 0x7F0B0070
- public static int Base_Widget_AppCompat_ActivityChooserView = 2131427440;
-
- // aapt resource value: 0x7F0B0071
- public static int Base_Widget_AppCompat_AutoCompleteTextView = 2131427441;
-
- // aapt resource value: 0x7F0B0072
- public static int Base_Widget_AppCompat_Button = 2131427442;
-
- // aapt resource value: 0x7F0B0078
- public static int Base_Widget_AppCompat_ButtonBar = 2131427448;
-
- // aapt resource value: 0x7F0B0079
- public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131427449;
-
- // aapt resource value: 0x7F0B0073
- public static int Base_Widget_AppCompat_Button_Borderless = 2131427443;
-
- // aapt resource value: 0x7F0B0074
- public static int Base_Widget_AppCompat_Button_Borderless_Colored = 2131427444;
-
- // aapt resource value: 0x7F0B0075
- public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131427445;
-
- // aapt resource value: 0x7F0B0076
- public static int Base_Widget_AppCompat_Button_Colored = 2131427446;
-
- // aapt resource value: 0x7F0B0077
- public static int Base_Widget_AppCompat_Button_Small = 2131427447;
-
- // aapt resource value: 0x7F0B007A
- public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131427450;
-
- // aapt resource value: 0x7F0B007B
- public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131427451;
-
- // aapt resource value: 0x7F0B007C
- public static int Base_Widget_AppCompat_CompoundButton_Switch = 2131427452;
-
- // aapt resource value: 0x7F0B007D
- public static int Base_Widget_AppCompat_DrawerArrowToggle = 2131427453;
-
- // aapt resource value: 0x7F0B007E
- public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131427454;
-
- // aapt resource value: 0x7F0B007F
- public static int Base_Widget_AppCompat_DropDownItem_Spinner = 2131427455;
-
- // aapt resource value: 0x7F0B0080
- public static int Base_Widget_AppCompat_EditText = 2131427456;
-
- // aapt resource value: 0x7F0B0081
- public static int Base_Widget_AppCompat_ImageButton = 2131427457;
-
- // aapt resource value: 0x7F0B0082
- public static int Base_Widget_AppCompat_Light_ActionBar = 2131427458;
-
- // aapt resource value: 0x7F0B0083
- public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131427459;
-
- // aapt resource value: 0x7F0B0084
- public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131427460;
-
- // aapt resource value: 0x7F0B0085
- public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131427461;
-
- // aapt resource value: 0x7F0B0086
- public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131427462;
-
- // aapt resource value: 0x7F0B0087
- public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131427463;
-
- // aapt resource value: 0x7F0B0088
- public static int Base_Widget_AppCompat_Light_PopupMenu = 2131427464;
-
- // aapt resource value: 0x7F0B0089
- public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131427465;
-
- // aapt resource value: 0x7F0B008A
- public static int Base_Widget_AppCompat_ListMenuView = 2131427466;
-
- // aapt resource value: 0x7F0B008B
- public static int Base_Widget_AppCompat_ListPopupWindow = 2131427467;
-
- // aapt resource value: 0x7F0B008C
- public static int Base_Widget_AppCompat_ListView = 2131427468;
-
- // aapt resource value: 0x7F0B008D
- public static int Base_Widget_AppCompat_ListView_DropDown = 2131427469;
-
- // aapt resource value: 0x7F0B008E
- public static int Base_Widget_AppCompat_ListView_Menu = 2131427470;
-
- // aapt resource value: 0x7F0B008F
- public static int Base_Widget_AppCompat_PopupMenu = 2131427471;
-
- // aapt resource value: 0x7F0B0090
- public static int Base_Widget_AppCompat_PopupMenu_Overflow = 2131427472;
-
- // aapt resource value: 0x7F0B0091
- public static int Base_Widget_AppCompat_PopupWindow = 2131427473;
-
- // aapt resource value: 0x7F0B0092
- public static int Base_Widget_AppCompat_ProgressBar = 2131427474;
-
- // aapt resource value: 0x7F0B0093
- public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131427475;
-
- // aapt resource value: 0x7F0B0094
- public static int Base_Widget_AppCompat_RatingBar = 2131427476;
-
- // aapt resource value: 0x7F0B0095
- public static int Base_Widget_AppCompat_RatingBar_Indicator = 2131427477;
-
- // aapt resource value: 0x7F0B0096
- public static int Base_Widget_AppCompat_RatingBar_Small = 2131427478;
-
- // aapt resource value: 0x7F0B0097
- public static int Base_Widget_AppCompat_SearchView = 2131427479;
-
- // aapt resource value: 0x7F0B0098
- public static int Base_Widget_AppCompat_SearchView_ActionBar = 2131427480;
-
- // aapt resource value: 0x7F0B0099
- public static int Base_Widget_AppCompat_SeekBar = 2131427481;
-
- // aapt resource value: 0x7F0B009A
- public static int Base_Widget_AppCompat_SeekBar_Discrete = 2131427482;
-
- // aapt resource value: 0x7F0B009B
- public static int Base_Widget_AppCompat_Spinner = 2131427483;
-
- // aapt resource value: 0x7F0B009C
- public static int Base_Widget_AppCompat_Spinner_Underlined = 2131427484;
-
- // aapt resource value: 0x7F0B009D
- public static int Base_Widget_AppCompat_TextView_SpinnerItem = 2131427485;
-
- // aapt resource value: 0x7F0B009E
- public static int Base_Widget_AppCompat_Toolbar = 2131427486;
-
- // aapt resource value: 0x7F0B009F
- public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131427487;
-
- // aapt resource value: 0x7F0B00A0
- public static int Platform_AppCompat = 2131427488;
-
- // aapt resource value: 0x7F0B00A1
- public static int Platform_AppCompat_Light = 2131427489;
-
- // aapt resource value: 0x7F0B00A2
- public static int Platform_ThemeOverlay_AppCompat = 2131427490;
-
- // aapt resource value: 0x7F0B00A3
- public static int Platform_ThemeOverlay_AppCompat_Dark = 2131427491;
-
- // aapt resource value: 0x7F0B00A4
- public static int Platform_ThemeOverlay_AppCompat_Light = 2131427492;
-
- // aapt resource value: 0x7F0B00A5
- public static int Platform_V21_AppCompat = 2131427493;
-
- // aapt resource value: 0x7F0B00A6
- public static int Platform_V21_AppCompat_Light = 2131427494;
-
- // aapt resource value: 0x7F0B00A7
- public static int Platform_V25_AppCompat = 2131427495;
-
- // aapt resource value: 0x7F0B00A8
- public static int Platform_V25_AppCompat_Light = 2131427496;
-
- // aapt resource value: 0x7F0B00A9
- public static int Platform_Widget_AppCompat_Spinner = 2131427497;
-
- // aapt resource value: 0x7F0B00AA
- public static int RtlOverlay_DialogWindowTitle_AppCompat = 2131427498;
-
- // aapt resource value: 0x7F0B00AB
- public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131427499;
-
- // aapt resource value: 0x7F0B00AC
- public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131427500;
-
- // aapt resource value: 0x7F0B00AD
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131427501;
-
- // aapt resource value: 0x7F0B00AE
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131427502;
-
- // aapt resource value: 0x7F0B00AF
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131427503;
-
- // aapt resource value: 0x7F0B00B0
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131427504;
-
- // aapt resource value: 0x7F0B00B1
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131427505;
-
- // aapt resource value: 0x7F0B00B2
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131427506;
-
- // aapt resource value: 0x7F0B00B8
- public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131427512;
-
- // aapt resource value: 0x7F0B00B3
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131427507;
-
- // aapt resource value: 0x7F0B00B4
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131427508;
-
- // aapt resource value: 0x7F0B00B5
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131427509;
-
- // aapt resource value: 0x7F0B00B6
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131427510;
-
- // aapt resource value: 0x7F0B00B7
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131427511;
-
- // aapt resource value: 0x7F0B00B9
- public static int RtlUnderlay_Widget_AppCompat_ActionButton = 2131427513;
-
- // aapt resource value: 0x7F0B00BA
- public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131427514;
-
- // aapt resource value: 0x7F0B00BB
- public static int TextAppearance_AppCompat = 2131427515;
-
- // aapt resource value: 0x7F0B00BC
- public static int TextAppearance_AppCompat_Body1 = 2131427516;
-
- // aapt resource value: 0x7F0B00BD
- public static int TextAppearance_AppCompat_Body2 = 2131427517;
-
- // aapt resource value: 0x7F0B00BE
- public static int TextAppearance_AppCompat_Button = 2131427518;
-
- // aapt resource value: 0x7F0B00BF
- public static int TextAppearance_AppCompat_Caption = 2131427519;
-
- // aapt resource value: 0x7F0B00C0
- public static int TextAppearance_AppCompat_Display1 = 2131427520;
-
- // aapt resource value: 0x7F0B00C1
- public static int TextAppearance_AppCompat_Display2 = 2131427521;
-
- // aapt resource value: 0x7F0B00C2
- public static int TextAppearance_AppCompat_Display3 = 2131427522;
-
- // aapt resource value: 0x7F0B00C3
- public static int TextAppearance_AppCompat_Display4 = 2131427523;
-
- // aapt resource value: 0x7F0B00C4
- public static int TextAppearance_AppCompat_Headline = 2131427524;
-
- // aapt resource value: 0x7F0B00C5
- public static int TextAppearance_AppCompat_Inverse = 2131427525;
-
- // aapt resource value: 0x7F0B00C6
- public static int TextAppearance_AppCompat_Large = 2131427526;
-
- // aapt resource value: 0x7F0B00C7
- public static int TextAppearance_AppCompat_Large_Inverse = 2131427527;
-
- // aapt resource value: 0x7F0B00C8
- public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131427528;
-
- // aapt resource value: 0x7F0B00C9
- public static int TextAppearance_AppCompat_Light_SearchResult_Title = 2131427529;
-
- // aapt resource value: 0x7F0B00CA
- public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131427530;
-
- // aapt resource value: 0x7F0B00CB
- public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131427531;
-
- // aapt resource value: 0x7F0B00CC
- public static int TextAppearance_AppCompat_Medium = 2131427532;
-
- // aapt resource value: 0x7F0B00CD
- public static int TextAppearance_AppCompat_Medium_Inverse = 2131427533;
-
- // aapt resource value: 0x7F0B00CE
- public static int TextAppearance_AppCompat_Menu = 2131427534;
-
- // aapt resource value: 0x7F0B00CF
- public static int TextAppearance_AppCompat_SearchResult_Subtitle = 2131427535;
-
- // aapt resource value: 0x7F0B00D0
- public static int TextAppearance_AppCompat_SearchResult_Title = 2131427536;
-
- // aapt resource value: 0x7F0B00D1
- public static int TextAppearance_AppCompat_Small = 2131427537;
-
- // aapt resource value: 0x7F0B00D2
- public static int TextAppearance_AppCompat_Small_Inverse = 2131427538;
-
- // aapt resource value: 0x7F0B00D3
- public static int TextAppearance_AppCompat_Subhead = 2131427539;
-
- // aapt resource value: 0x7F0B00D4
- public static int TextAppearance_AppCompat_Subhead_Inverse = 2131427540;
-
- // aapt resource value: 0x7F0B00D5
- public static int TextAppearance_AppCompat_Title = 2131427541;
-
- // aapt resource value: 0x7F0B00D6
- public static int TextAppearance_AppCompat_Title_Inverse = 2131427542;
-
- // aapt resource value: 0x7F0B00D7
- public static int TextAppearance_AppCompat_Tooltip = 2131427543;
-
- // aapt resource value: 0x7F0B00D8
- public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131427544;
-
- // aapt resource value: 0x7F0B00D9
- public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131427545;
-
- // aapt resource value: 0x7F0B00DA
- public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131427546;
-
- // aapt resource value: 0x7F0B00DB
- public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131427547;
-
- // aapt resource value: 0x7F0B00DC
- public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131427548;
-
- // aapt resource value: 0x7F0B00DD
- public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131427549;
-
- // aapt resource value: 0x7F0B00DE
- public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131427550;
-
- // aapt resource value: 0x7F0B00DF
- public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131427551;
-
- // aapt resource value: 0x7F0B00E0
- public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131427552;
-
- // aapt resource value: 0x7F0B00E1
- public static int TextAppearance_AppCompat_Widget_Button = 2131427553;
-
- // aapt resource value: 0x7F0B00E2
- public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131427554;
-
- // aapt resource value: 0x7F0B00E3
- public static int TextAppearance_AppCompat_Widget_Button_Colored = 2131427555;
-
- // aapt resource value: 0x7F0B00E4
- public static int TextAppearance_AppCompat_Widget_Button_Inverse = 2131427556;
-
- // aapt resource value: 0x7F0B00E5
- public static int TextAppearance_AppCompat_Widget_DropDownItem = 2131427557;
-
- // aapt resource value: 0x7F0B00E6
- public static int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131427558;
-
- // aapt resource value: 0x7F0B00E7
- public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131427559;
-
- // aapt resource value: 0x7F0B00E8
- public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131427560;
-
- // aapt resource value: 0x7F0B00E9
- public static int TextAppearance_AppCompat_Widget_Switch = 2131427561;
-
- // aapt resource value: 0x7F0B00EA
- public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131427562;
-
- // aapt resource value: 0x7F0B00EB
- public static int TextAppearance_Compat_Notification = 2131427563;
-
- // aapt resource value: 0x7F0B00EC
- public static int TextAppearance_Compat_Notification_Info = 2131427564;
-
- // aapt resource value: 0x7F0B00ED
- public static int TextAppearance_Compat_Notification_Line2 = 2131427565;
-
- // aapt resource value: 0x7F0B00EE
- public static int TextAppearance_Compat_Notification_Time = 2131427566;
-
- // aapt resource value: 0x7F0B00EF
- public static int TextAppearance_Compat_Notification_Title = 2131427567;
-
- // aapt resource value: 0x7F0B00F0
- public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131427568;
-
- // aapt resource value: 0x7F0B00F1
- public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131427569;
-
- // aapt resource value: 0x7F0B00F2
- public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131427570;
-
- // aapt resource value: 0x7F0B0108
- public static int ThemeOverlay_AppCompat = 2131427592;
-
- // aapt resource value: 0x7F0B0109
- public static int ThemeOverlay_AppCompat_ActionBar = 2131427593;
-
- // aapt resource value: 0x7F0B010A
- public static int ThemeOverlay_AppCompat_Dark = 2131427594;
-
- // aapt resource value: 0x7F0B010B
- public static int ThemeOverlay_AppCompat_Dark_ActionBar = 2131427595;
-
- // aapt resource value: 0x7F0B010C
- public static int ThemeOverlay_AppCompat_Dialog = 2131427596;
-
- // aapt resource value: 0x7F0B010D
- public static int ThemeOverlay_AppCompat_Dialog_Alert = 2131427597;
-
- // aapt resource value: 0x7F0B010E
- public static int ThemeOverlay_AppCompat_Light = 2131427598;
-
- // aapt resource value: 0x7F0B00F3
- public static int Theme_AppCompat = 2131427571;
-
- // aapt resource value: 0x7F0B00F4
- public static int Theme_AppCompat_CompactMenu = 2131427572;
-
- // aapt resource value: 0x7F0B00F5
- public static int Theme_AppCompat_DayNight = 2131427573;
-
- // aapt resource value: 0x7F0B00F6
- public static int Theme_AppCompat_DayNight_DarkActionBar = 2131427574;
-
- // aapt resource value: 0x7F0B00F7
- public static int Theme_AppCompat_DayNight_Dialog = 2131427575;
-
- // aapt resource value: 0x7F0B00FA
- public static int Theme_AppCompat_DayNight_DialogWhenLarge = 2131427578;
-
- // aapt resource value: 0x7F0B00F8
- public static int Theme_AppCompat_DayNight_Dialog_Alert = 2131427576;
-
- // aapt resource value: 0x7F0B00F9
- public static int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131427577;
-
- // aapt resource value: 0x7F0B00FB
- public static int Theme_AppCompat_DayNight_NoActionBar = 2131427579;
-
- // aapt resource value: 0x7F0B00FC
- public static int Theme_AppCompat_Dialog = 2131427580;
-
- // aapt resource value: 0x7F0B00FF
- public static int Theme_AppCompat_DialogWhenLarge = 2131427583;
-
- // aapt resource value: 0x7F0B00FD
- public static int Theme_AppCompat_Dialog_Alert = 2131427581;
-
- // aapt resource value: 0x7F0B00FE
- public static int Theme_AppCompat_Dialog_MinWidth = 2131427582;
-
- // aapt resource value: 0x7F0B0100
- public static int Theme_AppCompat_Light = 2131427584;
-
- // aapt resource value: 0x7F0B0101
- public static int Theme_AppCompat_Light_DarkActionBar = 2131427585;
-
- // aapt resource value: 0x7F0B0102
- public static int Theme_AppCompat_Light_Dialog = 2131427586;
-
- // aapt resource value: 0x7F0B0105
- public static int Theme_AppCompat_Light_DialogWhenLarge = 2131427589;
-
- // aapt resource value: 0x7F0B0103
- public static int Theme_AppCompat_Light_Dialog_Alert = 2131427587;
-
- // aapt resource value: 0x7F0B0104
- public static int Theme_AppCompat_Light_Dialog_MinWidth = 2131427588;
-
- // aapt resource value: 0x7F0B0106
- public static int Theme_AppCompat_Light_NoActionBar = 2131427590;
-
- // aapt resource value: 0x7F0B0107
- public static int Theme_AppCompat_NoActionBar = 2131427591;
-
- // aapt resource value: 0x7F0B010F
- public static int Widget_AppCompat_ActionBar = 2131427599;
-
- // aapt resource value: 0x7F0B0110
- public static int Widget_AppCompat_ActionBar_Solid = 2131427600;
-
- // aapt resource value: 0x7F0B0111
- public static int Widget_AppCompat_ActionBar_TabBar = 2131427601;
-
- // aapt resource value: 0x7F0B0112
- public static int Widget_AppCompat_ActionBar_TabText = 2131427602;
-
- // aapt resource value: 0x7F0B0113
- public static int Widget_AppCompat_ActionBar_TabView = 2131427603;
-
- // aapt resource value: 0x7F0B0114
- public static int Widget_AppCompat_ActionButton = 2131427604;
-
- // aapt resource value: 0x7F0B0115
- public static int Widget_AppCompat_ActionButton_CloseMode = 2131427605;
-
- // aapt resource value: 0x7F0B0116
- public static int Widget_AppCompat_ActionButton_Overflow = 2131427606;
-
- // aapt resource value: 0x7F0B0117
- public static int Widget_AppCompat_ActionMode = 2131427607;
-
- // aapt resource value: 0x7F0B0118
- public static int Widget_AppCompat_ActivityChooserView = 2131427608;
-
- // aapt resource value: 0x7F0B0119
- public static int Widget_AppCompat_AutoCompleteTextView = 2131427609;
-
- // aapt resource value: 0x7F0B011A
- public static int Widget_AppCompat_Button = 2131427610;
-
- // aapt resource value: 0x7F0B0120
- public static int Widget_AppCompat_ButtonBar = 2131427616;
-
- // aapt resource value: 0x7F0B0121
- public static int Widget_AppCompat_ButtonBar_AlertDialog = 2131427617;
-
- // aapt resource value: 0x7F0B011B
- public static int Widget_AppCompat_Button_Borderless = 2131427611;
-
- // aapt resource value: 0x7F0B011C
- public static int Widget_AppCompat_Button_Borderless_Colored = 2131427612;
-
- // aapt resource value: 0x7F0B011D
- public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131427613;
-
- // aapt resource value: 0x7F0B011E
- public static int Widget_AppCompat_Button_Colored = 2131427614;
-
- // aapt resource value: 0x7F0B011F
- public static int Widget_AppCompat_Button_Small = 2131427615;
-
- // aapt resource value: 0x7F0B0122
- public static int Widget_AppCompat_CompoundButton_CheckBox = 2131427618;
-
- // aapt resource value: 0x7F0B0123
- public static int Widget_AppCompat_CompoundButton_RadioButton = 2131427619;
-
- // aapt resource value: 0x7F0B0124
- public static int Widget_AppCompat_CompoundButton_Switch = 2131427620;
-
- // aapt resource value: 0x7F0B0125
- public static int Widget_AppCompat_DrawerArrowToggle = 2131427621;
-
- // aapt resource value: 0x7F0B0126
- public static int Widget_AppCompat_DropDownItem_Spinner = 2131427622;
-
- // aapt resource value: 0x7F0B0127
- public static int Widget_AppCompat_EditText = 2131427623;
-
- // aapt resource value: 0x7F0B0128
- public static int Widget_AppCompat_ImageButton = 2131427624;
-
- // aapt resource value: 0x7F0B0129
- public static int Widget_AppCompat_Light_ActionBar = 2131427625;
-
- // aapt resource value: 0x7F0B012A
- public static int Widget_AppCompat_Light_ActionBar_Solid = 2131427626;
-
- // aapt resource value: 0x7F0B012B
- public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131427627;
-
- // aapt resource value: 0x7F0B012C
- public static int Widget_AppCompat_Light_ActionBar_TabBar = 2131427628;
-
- // aapt resource value: 0x7F0B012D
- public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131427629;
-
- // aapt resource value: 0x7F0B012E
- public static int Widget_AppCompat_Light_ActionBar_TabText = 2131427630;
-
- // aapt resource value: 0x7F0B012F
- public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131427631;
-
- // aapt resource value: 0x7F0B0130
- public static int Widget_AppCompat_Light_ActionBar_TabView = 2131427632;
-
- // aapt resource value: 0x7F0B0131
- public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131427633;
-
- // aapt resource value: 0x7F0B0132
- public static int Widget_AppCompat_Light_ActionButton = 2131427634;
-
- // aapt resource value: 0x7F0B0133
- public static int Widget_AppCompat_Light_ActionButton_CloseMode = 2131427635;
-
- // aapt resource value: 0x7F0B0134
- public static int Widget_AppCompat_Light_ActionButton_Overflow = 2131427636;
-
- // aapt resource value: 0x7F0B0135
- public static int Widget_AppCompat_Light_ActionMode_Inverse = 2131427637;
-
- // aapt resource value: 0x7F0B0136
- public static int Widget_AppCompat_Light_ActivityChooserView = 2131427638;
-
- // aapt resource value: 0x7F0B0137
- public static int Widget_AppCompat_Light_AutoCompleteTextView = 2131427639;
-
- // aapt resource value: 0x7F0B0138
- public static int Widget_AppCompat_Light_DropDownItem_Spinner = 2131427640;
-
- // aapt resource value: 0x7F0B0139
- public static int Widget_AppCompat_Light_ListPopupWindow = 2131427641;
-
- // aapt resource value: 0x7F0B013A
- public static int Widget_AppCompat_Light_ListView_DropDown = 2131427642;
-
- // aapt resource value: 0x7F0B013B
- public static int Widget_AppCompat_Light_PopupMenu = 2131427643;
-
- // aapt resource value: 0x7F0B013C
- public static int Widget_AppCompat_Light_PopupMenu_Overflow = 2131427644;
-
- // aapt resource value: 0x7F0B013D
- public static int Widget_AppCompat_Light_SearchView = 2131427645;
-
- // aapt resource value: 0x7F0B013E
- public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131427646;
-
- // aapt resource value: 0x7F0B013F
- public static int Widget_AppCompat_ListMenuView = 2131427647;
-
- // aapt resource value: 0x7F0B0140
- public static int Widget_AppCompat_ListPopupWindow = 2131427648;
-
- // aapt resource value: 0x7F0B0141
- public static int Widget_AppCompat_ListView = 2131427649;
-
- // aapt resource value: 0x7F0B0142
- public static int Widget_AppCompat_ListView_DropDown = 2131427650;
-
- // aapt resource value: 0x7F0B0143
- public static int Widget_AppCompat_ListView_Menu = 2131427651;
-
- // aapt resource value: 0x7F0B0144
- public static int Widget_AppCompat_PopupMenu = 2131427652;
-
- // aapt resource value: 0x7F0B0145
- public static int Widget_AppCompat_PopupMenu_Overflow = 2131427653;
-
- // aapt resource value: 0x7F0B0146
- public static int Widget_AppCompat_PopupWindow = 2131427654;
-
- // aapt resource value: 0x7F0B0147
- public static int Widget_AppCompat_ProgressBar = 2131427655;
-
- // aapt resource value: 0x7F0B0148
- public static int Widget_AppCompat_ProgressBar_Horizontal = 2131427656;
-
- // aapt resource value: 0x7F0B0149
- public static int Widget_AppCompat_RatingBar = 2131427657;
-
- // aapt resource value: 0x7F0B014A
- public static int Widget_AppCompat_RatingBar_Indicator = 2131427658;
-
- // aapt resource value: 0x7F0B014B
- public static int Widget_AppCompat_RatingBar_Small = 2131427659;
-
- // aapt resource value: 0x7F0B014C
- public static int Widget_AppCompat_SearchView = 2131427660;
-
- // aapt resource value: 0x7F0B014D
- public static int Widget_AppCompat_SearchView_ActionBar = 2131427661;
-
- // aapt resource value: 0x7F0B014E
- public static int Widget_AppCompat_SeekBar = 2131427662;
-
- // aapt resource value: 0x7F0B014F
- public static int Widget_AppCompat_SeekBar_Discrete = 2131427663;
-
- // aapt resource value: 0x7F0B0150
- public static int Widget_AppCompat_Spinner = 2131427664;
-
- // aapt resource value: 0x7F0B0151
- public static int Widget_AppCompat_Spinner_DropDown = 2131427665;
-
- // aapt resource value: 0x7F0B0152
- public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131427666;
-
- // aapt resource value: 0x7F0B0153
- public static int Widget_AppCompat_Spinner_Underlined = 2131427667;
-
- // aapt resource value: 0x7F0B0154
- public static int Widget_AppCompat_TextView_SpinnerItem = 2131427668;
-
- // aapt resource value: 0x7F0B0155
- public static int Widget_AppCompat_Toolbar = 2131427669;
-
- // aapt resource value: 0x7F0B0156
- public static int Widget_AppCompat_Toolbar_Button_Navigation = 2131427670;
-
- // aapt resource value: 0x7F0B0157
- public static int Widget_Compat_NotificationActionContainer = 2131427671;
-
- // aapt resource value: 0x7F0B0158
- public static int Widget_Compat_NotificationActionText = 2131427672;
-
- // aapt resource value: 0x7F0B0159
- public static int Widget_Support_CoordinatorLayout = 2131427673;
-
- static Style()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Style()
- {
- }
- }
-
- public partial class Styleable
- {
-
- // aapt resource value: { 0x7F020031,0x7F020032,0x7F020033,0x7F020057,0x7F020058,0x7F020059,0x7F02005A,0x7F02005B,0x7F02005C,0x7F02005F,0x7F020064,0x7F020065,0x7F020070,0x7F020080,0x7F020081,0x7F020082,0x7F020083,0x7F020084,0x7F020089,0x7F02008C,0x7F0200A2,0x7F0200A9,0x7F0200B4,0x7F0200B7,0x7F0200B8,0x7F0200D3,0x7F0200D6,0x7F0200F1,0x7F0200FA }
- public static int[] ActionBar = new int[] {
- 2130837553,
- 2130837554,
- 2130837555,
- 2130837591,
- 2130837592,
- 2130837593,
- 2130837594,
- 2130837595,
- 2130837596,
- 2130837599,
- 2130837604,
- 2130837605,
- 2130837616,
- 2130837632,
- 2130837633,
- 2130837634,
- 2130837635,
- 2130837636,
- 2130837641,
- 2130837644,
- 2130837666,
- 2130837673,
- 2130837684,
- 2130837687,
- 2130837688,
- 2130837715,
- 2130837718,
- 2130837745,
- 2130837754};
-
- // aapt resource value: { 0x10100B3 }
- public static int[] ActionBarLayout = new int[] {
- 16842931};
-
- // aapt resource value: 0
- public static int ActionBarLayout_android_layout_gravity = 0;
-
- // aapt resource value: 0
- public static int ActionBar_background = 0;
-
- // aapt resource value: 1
- public static int ActionBar_backgroundSplit = 1;
-
- // aapt resource value: 2
- public static int ActionBar_backgroundStacked = 2;
-
- // aapt resource value: 3
- public static int ActionBar_contentInsetEnd = 3;
-
- // aapt resource value: 4
- public static int ActionBar_contentInsetEndWithActions = 4;
-
- // aapt resource value: 5
- public static int ActionBar_contentInsetLeft = 5;
-
- // aapt resource value: 6
- public static int ActionBar_contentInsetRight = 6;
-
- // aapt resource value: 7
- public static int ActionBar_contentInsetStart = 7;
-
- // aapt resource value: 8
- public static int ActionBar_contentInsetStartWithNavigation = 8;
-
- // aapt resource value: 9
- public static int ActionBar_customNavigationLayout = 9;
-
- // aapt resource value: 10
- public static int ActionBar_displayOptions = 10;
-
- // aapt resource value: 11
- public static int ActionBar_divider = 11;
-
- // aapt resource value: 12
- public static int ActionBar_elevation = 12;
-
- // aapt resource value: 13
- public static int ActionBar_height = 13;
-
- // aapt resource value: 14
- public static int ActionBar_hideOnContentScroll = 14;
-
- // aapt resource value: 15
- public static int ActionBar_homeAsUpIndicator = 15;
-
- // aapt resource value: 16
- public static int ActionBar_homeLayout = 16;
-
- // aapt resource value: 17
- public static int ActionBar_icon = 17;
-
- // aapt resource value: 18
- public static int ActionBar_indeterminateProgressStyle = 18;
-
- // aapt resource value: 19
- public static int ActionBar_itemPadding = 19;
-
- // aapt resource value: 20
- public static int ActionBar_logo = 20;
-
- // aapt resource value: 21
- public static int ActionBar_navigationMode = 21;
-
- // aapt resource value: 22
- public static int ActionBar_popupTheme = 22;
-
- // aapt resource value: 23
- public static int ActionBar_progressBarPadding = 23;
-
- // aapt resource value: 24
- public static int ActionBar_progressBarStyle = 24;
-
- // aapt resource value: 25
- public static int ActionBar_subtitle = 25;
-
- // aapt resource value: 26
- public static int ActionBar_subtitleTextStyle = 26;
-
- // aapt resource value: 27
- public static int ActionBar_title = 27;
-
- // aapt resource value: 28
- public static int ActionBar_titleTextStyle = 28;
-
- // aapt resource value: { 0x101013F }
- public static int[] ActionMenuItemView = new int[] {
- 16843071};
-
- // aapt resource value: 0
- public static int ActionMenuItemView_android_minWidth = 0;
-
- // aapt resource value: { 0xFFFFFFFF }
- public static int[] ActionMenuView = new int[] {
- -1};
-
- // aapt resource value: { 0x7F020031,0x7F020032,0x7F020047,0x7F020080,0x7F0200D6,0x7F0200FA }
- public static int[] ActionMode = new int[] {
- 2130837553,
- 2130837554,
- 2130837575,
- 2130837632,
- 2130837718,
- 2130837754};
-
- // aapt resource value: 0
- public static int ActionMode_background = 0;
-
- // aapt resource value: 1
- public static int ActionMode_backgroundSplit = 1;
-
- // aapt resource value: 2
- public static int ActionMode_closeItemLayout = 2;
-
- // aapt resource value: 3
- public static int ActionMode_height = 3;
-
- // aapt resource value: 4
- public static int ActionMode_subtitleTextStyle = 4;
-
- // aapt resource value: 5
- public static int ActionMode_titleTextStyle = 5;
-
- // aapt resource value: { 0x7F020071,0x7F02008A }
- public static int[] ActivityChooserView = new int[] {
- 2130837617,
- 2130837642};
-
- // aapt resource value: 0
- public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 0;
-
- // aapt resource value: 1
- public static int ActivityChooserView_initialActivityCount = 1;
-
- // aapt resource value: { 0x10100F2,0x7F02003E,0x7F02003F,0x7F020099,0x7F02009A,0x7F0200A6,0x7F0200C8,0x7F0200C9 }
- public static int[] AlertDialog = new int[] {
- 16842994,
- 2130837566,
- 2130837567,
- 2130837657,
- 2130837658,
- 2130837670,
- 2130837704,
- 2130837705};
-
- // aapt resource value: 0
- public static int AlertDialog_android_layout = 0;
-
- // aapt resource value: 1
- public static int AlertDialog_buttonIconDimen = 1;
-
- // aapt resource value: 2
- public static int AlertDialog_buttonPanelSideLayout = 2;
-
- // aapt resource value: 3
- public static int AlertDialog_listItemLayout = 3;
-
- // aapt resource value: 4
- public static int AlertDialog_listLayout = 4;
-
- // aapt resource value: 5
- public static int AlertDialog_multiChoiceItemLayout = 5;
-
- // aapt resource value: 6
- public static int AlertDialog_showTitle = 6;
-
- // aapt resource value: 7
- public static int AlertDialog_singleChoiceItemLayout = 7;
-
- // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D }
- public static int[] AnimatedStateListDrawableCompat = new int[] {
- 16843036,
- 16843156,
- 16843157,
- 16843158,
- 16843532,
- 16843533};
-
- // aapt resource value: 3
- public static int AnimatedStateListDrawableCompat_android_constantSize = 3;
-
- // aapt resource value: 0
- public static int AnimatedStateListDrawableCompat_android_dither = 0;
-
- // aapt resource value: 4
- public static int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4;
-
- // aapt resource value: 5
- public static int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5;
-
- // aapt resource value: 2
- public static int AnimatedStateListDrawableCompat_android_variablePadding = 2;
-
- // aapt resource value: 1
- public static int AnimatedStateListDrawableCompat_android_visible = 1;
-
- // aapt resource value: { 0x10100D0,0x1010199 }
- public static int[] AnimatedStateListDrawableItem = new int[] {
- 16842960,
- 16843161};
-
- // aapt resource value: 1
- public static int AnimatedStateListDrawableItem_android_drawable = 1;
-
- // aapt resource value: 0
- public static int AnimatedStateListDrawableItem_android_id = 0;
-
- // aapt resource value: { 0x1010199,0x1010449,0x101044A,0x101044B }
- public static int[] AnimatedStateListDrawableTransition = new int[] {
- 16843161,
- 16843849,
- 16843850,
- 16843851};
-
- // aapt resource value: 0
- public static int AnimatedStateListDrawableTransition_android_drawable = 0;
-
- // aapt resource value: 2
- public static int AnimatedStateListDrawableTransition_android_fromId = 2;
-
- // aapt resource value: 3
- public static int AnimatedStateListDrawableTransition_android_reversible = 3;
-
- // aapt resource value: 1
- public static int AnimatedStateListDrawableTransition_android_toId = 1;
-
- // aapt resource value: { 0x1010119,0x7F0200CE,0x7F0200EF,0x7F0200F0 }
- public static int[] AppCompatImageView = new int[] {
- 16843033,
- 2130837710,
- 2130837743,
- 2130837744};
-
- // aapt resource value: 0
- public static int AppCompatImageView_android_src = 0;
-
- // aapt resource value: 1
- public static int AppCompatImageView_srcCompat = 1;
-
- // aapt resource value: 2
- public static int AppCompatImageView_tint = 2;
-
- // aapt resource value: 3
- public static int AppCompatImageView_tintMode = 3;
-
- // aapt resource value: { 0x1010142,0x7F0200EC,0x7F0200ED,0x7F0200EE }
- public static int[] AppCompatSeekBar = new int[] {
- 16843074,
- 2130837740,
- 2130837741,
- 2130837742};
-
- // aapt resource value: 0
- public static int AppCompatSeekBar_android_thumb = 0;
-
- // aapt resource value: 1
- public static int AppCompatSeekBar_tickMark = 1;
-
- // aapt resource value: 2
- public static int AppCompatSeekBar_tickMarkTint = 2;
-
- // aapt resource value: 3
- public static int AppCompatSeekBar_tickMarkTintMode = 3;
-
- // aapt resource value: { 0x1010034,0x101016D,0x101016E,0x101016F,0x1010170,0x1010392,0x1010393 }
- public static int[] AppCompatTextHelper = new int[] {
- 16842804,
- 16843117,
- 16843118,
- 16843119,
- 16843120,
- 16843666,
- 16843667};
-
- // aapt resource value: 2
- public static int AppCompatTextHelper_android_drawableBottom = 2;
-
- // aapt resource value: 6
- public static int AppCompatTextHelper_android_drawableEnd = 6;
-
- // aapt resource value: 3
- public static int AppCompatTextHelper_android_drawableLeft = 3;
-
- // aapt resource value: 4
- public static int AppCompatTextHelper_android_drawableRight = 4;
-
- // aapt resource value: 5
- public static int AppCompatTextHelper_android_drawableStart = 5;
-
- // aapt resource value: 1
- public static int AppCompatTextHelper_android_drawableTop = 1;
-
- // aapt resource value: 0
- public static int AppCompatTextHelper_android_textAppearance = 0;
-
- // aapt resource value: { 0x1010034,0x7F02002C,0x7F02002D,0x7F02002E,0x7F02002F,0x7F020030,0x7F020072,0x7F020074,0x7F02008E,0x7F020096,0x7F0200DC }
- public static int[] AppCompatTextView = new int[] {
- 16842804,
- 2130837548,
- 2130837549,
- 2130837550,
- 2130837551,
- 2130837552,
- 2130837618,
- 2130837620,
- 2130837646,
- 2130837654,
- 2130837724};
-
- // aapt resource value: 0
- public static int AppCompatTextView_android_textAppearance = 0;
-
- // aapt resource value: 1
- public static int AppCompatTextView_autoSizeMaxTextSize = 1;
-
- // aapt resource value: 2
- public static int AppCompatTextView_autoSizeMinTextSize = 2;
-
- // aapt resource value: 3
- public static int AppCompatTextView_autoSizePresetSizes = 3;
-
- // aapt resource value: 4
- public static int AppCompatTextView_autoSizeStepGranularity = 4;
-
- // aapt resource value: 5
- public static int AppCompatTextView_autoSizeTextType = 5;
-
- // aapt resource value: 6
- public static int AppCompatTextView_firstBaselineToTopHeight = 6;
-
- // aapt resource value: 7
- public static int AppCompatTextView_fontFamily = 7;
-
- // aapt resource value: 8
- public static int AppCompatTextView_lastBaselineToBottomHeight = 8;
-
- // aapt resource value: 9
- public static int AppCompatTextView_lineHeight = 9;
-
- // aapt resource value: 10
- public static int AppCompatTextView_textAllCaps = 10;
-
- // aapt resource value: { 0x1010057,0x10100AE,0x7F020000,0x7F020001,0x7F020002,0x7F020003,0x7F020004,0x7F020005,0x7F020006,0x7F020007,0x7F020008,0x7F020009,0x7F02000A,0x7F02000B,0x7F02000C,0x7F02000E,0x7F02000F,0x7F020010,0x7F020011,0x7F020012,0x7F020013,0x7F020014,0x7F020015,0x7F020016,0x7F020017,0x7F020018,0x7F020019,0x7F02001A,0x7F02001B,0x7F02001C,0x7F02001D,0x7F02001E,0x7F020021,0x7F020022,0x7F020023,0x7F020024,0x7F020025,0x7F02002B,0x7F020037,0x7F020038,0x7F020039,0x7F02003A,0x7F02003B,0x7F02003C,0x7F020040,0x7F020041,0x7F020044,0x7F020045,0x7F02004B,0x7F02004C,0x7F02004D,0x7F02004E,0x7F02004F,0x7F020050,0x7F020051,0x7F020052,0x7F020053,0x7F020054,0x7F02005D,0x7F020061,0x7F020062,0x7F020063,0x7F020066,0x7F020068,0x7F02006B,0x7F02006C,0x7F02006D,0x7F02006E,0x7F02006F,0x7F020082,0x7F020088,0x7F020097,0x7F020098,0x7F02009B,0x7F02009C,0x7F02009D,0x7F02009E,0x7F02009F,0x7F0200A0,0x7F0200A1,0x7F0200B0,0x7F0200B1,0x7F0200B2,0x7F0200B3,0x7F0200B5,0x7F0200BB,0x7F0200BC,0x7F0200BD,0x7F0200BE,0x7F0200C1,0x7F0200C2,0x7F0200C3,0x7F0200C4,0x7F0200CB,0x7F0200CC,0x7F0200DA,0x7F0200DD,0x7F0200DE,0x7F0200DF,0x7F0200E0,0x7F0200E1,0x7F0200E2,0x7F0200E3,0x7F0200E4,0x7F0200E5,0x7F0200E6,0x7F0200FB,0x7F0200FC,0x7F0200FD,0x7F0200FE,0x7F020104,0x7F020106,0x7F020107,0x7F020108,0x7F020109,0x7F02010A,0x7F02010B,0x7F02010C,0x7F02010D,0x7F02010E,0x7F02010F }
- public static int[] AppCompatTheme = new int[] {
- 16842839,
- 16842926,
- 2130837504,
- 2130837505,
- 2130837506,
- 2130837507,
- 2130837508,
- 2130837509,
- 2130837510,
- 2130837511,
- 2130837512,
- 2130837513,
- 2130837514,
- 2130837515,
- 2130837516,
- 2130837518,
- 2130837519,
- 2130837520,
- 2130837521,
- 2130837522,
- 2130837523,
- 2130837524,
- 2130837525,
- 2130837526,
- 2130837527,
- 2130837528,
- 2130837529,
- 2130837530,
- 2130837531,
- 2130837532,
- 2130837533,
- 2130837534,
- 2130837537,
- 2130837538,
- 2130837539,
- 2130837540,
- 2130837541,
- 2130837547,
- 2130837559,
- 2130837560,
- 2130837561,
- 2130837562,
- 2130837563,
- 2130837564,
- 2130837568,
- 2130837569,
- 2130837572,
- 2130837573,
- 2130837579,
- 2130837580,
- 2130837581,
- 2130837582,
- 2130837583,
- 2130837584,
- 2130837585,
- 2130837586,
- 2130837587,
- 2130837588,
- 2130837597,
- 2130837601,
- 2130837602,
- 2130837603,
- 2130837606,
- 2130837608,
- 2130837611,
- 2130837612,
- 2130837613,
- 2130837614,
- 2130837615,
- 2130837634,
- 2130837640,
- 2130837655,
- 2130837656,
- 2130837659,
- 2130837660,
- 2130837661,
- 2130837662,
- 2130837663,
- 2130837664,
- 2130837665,
- 2130837680,
- 2130837681,
- 2130837682,
- 2130837683,
- 2130837685,
- 2130837691,
- 2130837692,
- 2130837693,
- 2130837694,
- 2130837697,
- 2130837698,
- 2130837699,
- 2130837700,
- 2130837707,
- 2130837708,
- 2130837722,
- 2130837725,
- 2130837726,
- 2130837727,
- 2130837728,
- 2130837729,
- 2130837730,
- 2130837731,
- 2130837732,
- 2130837733,
- 2130837734,
- 2130837755,
- 2130837756,
- 2130837757,
- 2130837758,
- 2130837764,
- 2130837766,
- 2130837767,
- 2130837768,
- 2130837769,
- 2130837770,
- 2130837771,
- 2130837772,
- 2130837773,
- 2130837774,
- 2130837775};
-
- // aapt resource value: 2
- public static int AppCompatTheme_actionBarDivider = 2;
-
- // aapt resource value: 3
- public static int AppCompatTheme_actionBarItemBackground = 3;
-
- // aapt resource value: 4
- public static int AppCompatTheme_actionBarPopupTheme = 4;
-
- // aapt resource value: 5
- public static int AppCompatTheme_actionBarSize = 5;
-
- // aapt resource value: 6
- public static int AppCompatTheme_actionBarSplitStyle = 6;
-
- // aapt resource value: 7
- public static int AppCompatTheme_actionBarStyle = 7;
-
- // aapt resource value: 8
- public static int AppCompatTheme_actionBarTabBarStyle = 8;
-
- // aapt resource value: 9
- public static int AppCompatTheme_actionBarTabStyle = 9;
-
- // aapt resource value: 10
- public static int AppCompatTheme_actionBarTabTextStyle = 10;
-
- // aapt resource value: 11
- public static int AppCompatTheme_actionBarTheme = 11;
-
- // aapt resource value: 12
- public static int AppCompatTheme_actionBarWidgetTheme = 12;
-
- // aapt resource value: 13
- public static int AppCompatTheme_actionButtonStyle = 13;
-
- // aapt resource value: 14
- public static int AppCompatTheme_actionDropDownStyle = 14;
-
- // aapt resource value: 15
- public static int AppCompatTheme_actionMenuTextAppearance = 15;
-
- // aapt resource value: 16
- public static int AppCompatTheme_actionMenuTextColor = 16;
-
- // aapt resource value: 17
- public static int AppCompatTheme_actionModeBackground = 17;
-
- // aapt resource value: 18
- public static int AppCompatTheme_actionModeCloseButtonStyle = 18;
-
- // aapt resource value: 19
- public static int AppCompatTheme_actionModeCloseDrawable = 19;
-
- // aapt resource value: 20
- public static int AppCompatTheme_actionModeCopyDrawable = 20;
-
- // aapt resource value: 21
- public static int AppCompatTheme_actionModeCutDrawable = 21;
-
- // aapt resource value: 22
- public static int AppCompatTheme_actionModeFindDrawable = 22;
-
- // aapt resource value: 23
- public static int AppCompatTheme_actionModePasteDrawable = 23;
-
- // aapt resource value: 24
- public static int AppCompatTheme_actionModePopupWindowStyle = 24;
-
- // aapt resource value: 25
- public static int AppCompatTheme_actionModeSelectAllDrawable = 25;
-
- // aapt resource value: 26
- public static int AppCompatTheme_actionModeShareDrawable = 26;
-
- // aapt resource value: 27
- public static int AppCompatTheme_actionModeSplitBackground = 27;
-
- // aapt resource value: 28
- public static int AppCompatTheme_actionModeStyle = 28;
-
- // aapt resource value: 29
- public static int AppCompatTheme_actionModeWebSearchDrawable = 29;
-
- // aapt resource value: 30
- public static int AppCompatTheme_actionOverflowButtonStyle = 30;
-
- // aapt resource value: 31
- public static int AppCompatTheme_actionOverflowMenuStyle = 31;
-
- // aapt resource value: 32
- public static int AppCompatTheme_activityChooserViewStyle = 32;
-
- // aapt resource value: 33
- public static int AppCompatTheme_alertDialogButtonGroupStyle = 33;
-
- // aapt resource value: 34
- public static int AppCompatTheme_alertDialogCenterButtons = 34;
-
- // aapt resource value: 35
- public static int AppCompatTheme_alertDialogStyle = 35;
-
- // aapt resource value: 36
- public static int AppCompatTheme_alertDialogTheme = 36;
-
- // aapt resource value: 1
- public static int AppCompatTheme_android_windowAnimationStyle = 1;
-
- // aapt resource value: 0
- public static int AppCompatTheme_android_windowIsFloating = 0;
-
- // aapt resource value: 37
- public static int AppCompatTheme_autoCompleteTextViewStyle = 37;
-
- // aapt resource value: 38
- public static int AppCompatTheme_borderlessButtonStyle = 38;
-
- // aapt resource value: 39
- public static int AppCompatTheme_buttonBarButtonStyle = 39;
-
- // aapt resource value: 40
- public static int AppCompatTheme_buttonBarNegativeButtonStyle = 40;
-
- // aapt resource value: 41
- public static int AppCompatTheme_buttonBarNeutralButtonStyle = 41;
-
- // aapt resource value: 42
- public static int AppCompatTheme_buttonBarPositiveButtonStyle = 42;
-
- // aapt resource value: 43
- public static int AppCompatTheme_buttonBarStyle = 43;
-
- // aapt resource value: 44
- public static int AppCompatTheme_buttonStyle = 44;
-
- // aapt resource value: 45
- public static int AppCompatTheme_buttonStyleSmall = 45;
-
- // aapt resource value: 46
- public static int AppCompatTheme_checkboxStyle = 46;
-
- // aapt resource value: 47
- public static int AppCompatTheme_checkedTextViewStyle = 47;
-
- // aapt resource value: 48
- public static int AppCompatTheme_colorAccent = 48;
-
- // aapt resource value: 49
- public static int AppCompatTheme_colorBackgroundFloating = 49;
-
- // aapt resource value: 50
- public static int AppCompatTheme_colorButtonNormal = 50;
-
- // aapt resource value: 51
- public static int AppCompatTheme_colorControlActivated = 51;
-
- // aapt resource value: 52
- public static int AppCompatTheme_colorControlHighlight = 52;
-
- // aapt resource value: 53
- public static int AppCompatTheme_colorControlNormal = 53;
-
- // aapt resource value: 54
- public static int AppCompatTheme_colorError = 54;
-
- // aapt resource value: 55
- public static int AppCompatTheme_colorPrimary = 55;
-
- // aapt resource value: 56
- public static int AppCompatTheme_colorPrimaryDark = 56;
-
- // aapt resource value: 57
- public static int AppCompatTheme_colorSwitchThumbNormal = 57;
-
- // aapt resource value: 58
- public static int AppCompatTheme_controlBackground = 58;
-
- // aapt resource value: 59
- public static int AppCompatTheme_dialogCornerRadius = 59;
-
- // aapt resource value: 60
- public static int AppCompatTheme_dialogPreferredPadding = 60;
-
- // aapt resource value: 61
- public static int AppCompatTheme_dialogTheme = 61;
-
- // aapt resource value: 62
- public static int AppCompatTheme_dividerHorizontal = 62;
-
- // aapt resource value: 63
- public static int AppCompatTheme_dividerVertical = 63;
-
- // aapt resource value: 65
- public static int AppCompatTheme_dropdownListPreferredItemHeight = 65;
-
- // aapt resource value: 64
- public static int AppCompatTheme_dropDownListViewStyle = 64;
-
- // aapt resource value: 66
- public static int AppCompatTheme_editTextBackground = 66;
-
- // aapt resource value: 67
- public static int AppCompatTheme_editTextColor = 67;
-
- // aapt resource value: 68
- public static int AppCompatTheme_editTextStyle = 68;
-
- // aapt resource value: 69
- public static int AppCompatTheme_homeAsUpIndicator = 69;
-
- // aapt resource value: 70
- public static int AppCompatTheme_imageButtonStyle = 70;
-
- // aapt resource value: 71
- public static int AppCompatTheme_listChoiceBackgroundIndicator = 71;
-
- // aapt resource value: 72
- public static int AppCompatTheme_listDividerAlertDialog = 72;
-
- // aapt resource value: 73
- public static int AppCompatTheme_listMenuViewStyle = 73;
-
- // aapt resource value: 74
- public static int AppCompatTheme_listPopupWindowStyle = 74;
-
- // aapt resource value: 75
- public static int AppCompatTheme_listPreferredItemHeight = 75;
-
- // aapt resource value: 76
- public static int AppCompatTheme_listPreferredItemHeightLarge = 76;
-
- // aapt resource value: 77
- public static int AppCompatTheme_listPreferredItemHeightSmall = 77;
-
- // aapt resource value: 78
- public static int AppCompatTheme_listPreferredItemPaddingLeft = 78;
-
- // aapt resource value: 79
- public static int AppCompatTheme_listPreferredItemPaddingRight = 79;
-
- // aapt resource value: 80
- public static int AppCompatTheme_panelBackground = 80;
-
- // aapt resource value: 81
- public static int AppCompatTheme_panelMenuListTheme = 81;
-
- // aapt resource value: 82
- public static int AppCompatTheme_panelMenuListWidth = 82;
-
- // aapt resource value: 83
- public static int AppCompatTheme_popupMenuStyle = 83;
-
- // aapt resource value: 84
- public static int AppCompatTheme_popupWindowStyle = 84;
-
- // aapt resource value: 85
- public static int AppCompatTheme_radioButtonStyle = 85;
-
- // aapt resource value: 86
- public static int AppCompatTheme_ratingBarStyle = 86;
-
- // aapt resource value: 87
- public static int AppCompatTheme_ratingBarStyleIndicator = 87;
-
- // aapt resource value: 88
- public static int AppCompatTheme_ratingBarStyleSmall = 88;
-
- // aapt resource value: 89
- public static int AppCompatTheme_searchViewStyle = 89;
-
- // aapt resource value: 90
- public static int AppCompatTheme_seekBarStyle = 90;
-
- // aapt resource value: 91
- public static int AppCompatTheme_selectableItemBackground = 91;
-
- // aapt resource value: 92
- public static int AppCompatTheme_selectableItemBackgroundBorderless = 92;
-
- // aapt resource value: 93
- public static int AppCompatTheme_spinnerDropDownItemStyle = 93;
-
- // aapt resource value: 94
- public static int AppCompatTheme_spinnerStyle = 94;
-
- // aapt resource value: 95
- public static int AppCompatTheme_switchStyle = 95;
-
- // aapt resource value: 96
- public static int AppCompatTheme_textAppearanceLargePopupMenu = 96;
-
- // aapt resource value: 97
- public static int AppCompatTheme_textAppearanceListItem = 97;
-
- // aapt resource value: 98
- public static int AppCompatTheme_textAppearanceListItemSecondary = 98;
-
- // aapt resource value: 99
- public static int AppCompatTheme_textAppearanceListItemSmall = 99;
-
- // aapt resource value: 100
- public static int AppCompatTheme_textAppearancePopupMenuHeader = 100;
-
- // aapt resource value: 101
- public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 101;
-
- // aapt resource value: 102
- public static int AppCompatTheme_textAppearanceSearchResultTitle = 102;
-
- // aapt resource value: 103
- public static int AppCompatTheme_textAppearanceSmallPopupMenu = 103;
-
- // aapt resource value: 104
- public static int AppCompatTheme_textColorAlertDialogListItem = 104;
-
- // aapt resource value: 105
- public static int AppCompatTheme_textColorSearchUrl = 105;
-
- // aapt resource value: 106
- public static int AppCompatTheme_toolbarNavigationButtonStyle = 106;
-
- // aapt resource value: 107
- public static int AppCompatTheme_toolbarStyle = 107;
-
- // aapt resource value: 108
- public static int AppCompatTheme_tooltipForegroundColor = 108;
-
- // aapt resource value: 109
- public static int AppCompatTheme_tooltipFrameBackground = 109;
-
- // aapt resource value: 110
- public static int AppCompatTheme_viewInflaterClass = 110;
-
- // aapt resource value: 111
- public static int AppCompatTheme_windowActionBar = 111;
-
- // aapt resource value: 112
- public static int AppCompatTheme_windowActionBarOverlay = 112;
-
- // aapt resource value: 113
- public static int AppCompatTheme_windowActionModeOverlay = 113;
-
- // aapt resource value: 114
- public static int AppCompatTheme_windowFixedHeightMajor = 114;
-
- // aapt resource value: 115
- public static int AppCompatTheme_windowFixedHeightMinor = 115;
-
- // aapt resource value: 116
- public static int AppCompatTheme_windowFixedWidthMajor = 116;
-
- // aapt resource value: 117
- public static int AppCompatTheme_windowFixedWidthMinor = 117;
-
- // aapt resource value: 118
- public static int AppCompatTheme_windowMinWidthMajor = 118;
-
- // aapt resource value: 119
- public static int AppCompatTheme_windowMinWidthMinor = 119;
-
- // aapt resource value: 120
- public static int AppCompatTheme_windowNoTitle = 120;
-
- // aapt resource value: { 0x7F020026 }
- public static int[] ButtonBarLayout = new int[] {
- 2130837542};
-
- // aapt resource value: 0
- public static int ButtonBarLayout_allowStacking = 0;
-
- // aapt resource value: { 0x10101A5,0x101031F,0x7F020027 }
- public static int[] ColorStateListItem = new int[] {
- 16843173,
- 16843551,
- 2130837543};
-
- // aapt resource value: 2
- public static int ColorStateListItem_alpha = 2;
-
- // aapt resource value: 1
- public static int ColorStateListItem_android_alpha = 1;
-
- // aapt resource value: 0
- public static int ColorStateListItem_android_color = 0;
-
- // aapt resource value: { 0x1010107,0x7F020042,0x7F020043 }
- public static int[] CompoundButton = new int[] {
- 16843015,
- 2130837570,
- 2130837571};
-
- // aapt resource value: 0
- public static int CompoundButton_android_button = 0;
-
- // aapt resource value: 1
- public static int CompoundButton_buttonTint = 1;
-
- // aapt resource value: 2
- public static int CompoundButton_buttonTintMode = 2;
-
- // aapt resource value: { 0x7F02008D,0x7F0200D0 }
- public static int[] CoordinatorLayout = new int[] {
- 2130837645,
- 2130837712};
-
- // aapt resource value: 0
- public static int CoordinatorLayout_keylines = 0;
-
- // aapt resource value: { 0x10100B3,0x7F020090,0x7F020091,0x7F020092,0x7F020093,0x7F020094,0x7F020095 }
- public static int[] CoordinatorLayout_Layout = new int[] {
- 16842931,
- 2130837648,
- 2130837649,
- 2130837650,
- 2130837651,
- 2130837652,
- 2130837653};
-
- // aapt resource value: 0
- public static int CoordinatorLayout_Layout_android_layout_gravity = 0;
-
- // aapt resource value: 1
- public static int CoordinatorLayout_Layout_layout_anchor = 1;
-
- // aapt resource value: 2
- public static int CoordinatorLayout_Layout_layout_anchorGravity = 2;
-
- // aapt resource value: 3
- public static int CoordinatorLayout_Layout_layout_behavior = 3;
-
- // aapt resource value: 4
- public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4;
-
- // aapt resource value: 5
- public static int CoordinatorLayout_Layout_layout_insetEdge = 5;
-
- // aapt resource value: 6
- public static int CoordinatorLayout_Layout_layout_keyline = 6;
-
- // aapt resource value: 1
- public static int CoordinatorLayout_statusBarBackground = 1;
-
- // aapt resource value: { 0x7F020029,0x7F02002A,0x7F020036,0x7F02004A,0x7F020069,0x7F02007E,0x7F0200CA,0x7F0200E8 }
- public static int[] DrawerArrowToggle = new int[] {
- 2130837545,
- 2130837546,
- 2130837558,
- 2130837578,
- 2130837609,
- 2130837630,
- 2130837706,
- 2130837736};
-
- // aapt resource value: 0
- public static int DrawerArrowToggle_arrowHeadLength = 0;
-
- // aapt resource value: 1
- public static int DrawerArrowToggle_arrowShaftLength = 1;
-
- // aapt resource value: 2
- public static int DrawerArrowToggle_barLength = 2;
-
- // aapt resource value: 3
- public static int DrawerArrowToggle_color = 3;
-
- // aapt resource value: 4
- public static int DrawerArrowToggle_drawableSize = 4;
-
- // aapt resource value: 5
- public static int DrawerArrowToggle_gapBetweenBars = 5;
-
- // aapt resource value: 6
- public static int DrawerArrowToggle_spinBars = 6;
-
- // aapt resource value: 7
- public static int DrawerArrowToggle_thickness = 7;
-
- // aapt resource value: { 0x7F020075,0x7F020076,0x7F020077,0x7F020078,0x7F020079,0x7F02007A }
- public static int[] FontFamily = new int[] {
- 2130837621,
- 2130837622,
- 2130837623,
- 2130837624,
- 2130837625,
- 2130837626};
-
- // aapt resource value: { 0x1010532,0x1010533,0x101053F,0x101056F,0x1010570,0x7F020073,0x7F02007B,0x7F02007C,0x7F02007D,0x7F020103 }
- public static int[] FontFamilyFont = new int[] {
- 16844082,
- 16844083,
- 16844095,
- 16844143,
- 16844144,
- 2130837619,
- 2130837627,
- 2130837628,
- 2130837629,
- 2130837763};
-
- // aapt resource value: 0
- public static int FontFamilyFont_android_font = 0;
-
- // aapt resource value: 2
- public static int FontFamilyFont_android_fontStyle = 2;
-
- // aapt resource value: 4
- public static int FontFamilyFont_android_fontVariationSettings = 4;
-
- // aapt resource value: 1
- public static int FontFamilyFont_android_fontWeight = 1;
-
- // aapt resource value: 3
- public static int FontFamilyFont_android_ttcIndex = 3;
-
- // aapt resource value: 5
- public static int FontFamilyFont_font = 5;
-
- // aapt resource value: 6
- public static int FontFamilyFont_fontStyle = 6;
-
- // aapt resource value: 7
- public static int FontFamilyFont_fontVariationSettings = 7;
-
- // aapt resource value: 8
- public static int FontFamilyFont_fontWeight = 8;
-
- // aapt resource value: 9
- public static int FontFamilyFont_ttcIndex = 9;
-
- // aapt resource value: 0
- public static int FontFamily_fontProviderAuthority = 0;
-
- // aapt resource value: 1
- public static int FontFamily_fontProviderCerts = 1;
-
- // aapt resource value: 2
- public static int FontFamily_fontProviderFetchStrategy = 2;
-
- // aapt resource value: 3
- public static int FontFamily_fontProviderFetchTimeout = 3;
-
- // aapt resource value: 4
- public static int FontFamily_fontProviderPackage = 4;
-
- // aapt resource value: 5
- public static int FontFamily_fontProviderQuery = 5;
-
- // aapt resource value: { 0x101019D,0x101019E,0x10101A1,0x10101A2,0x10101A3,0x10101A4,0x1010201,0x101020B,0x1010510,0x1010511,0x1010512,0x1010513 }
- public static int[] GradientColor = new int[] {
- 16843165,
- 16843166,
- 16843169,
- 16843170,
- 16843171,
- 16843172,
- 16843265,
- 16843275,
- 16844048,
- 16844049,
- 16844050,
- 16844051};
-
- // aapt resource value: { 0x10101A5,0x1010514 }
- public static int[] GradientColorItem = new int[] {
- 16843173,
- 16844052};
-
- // aapt resource value: 0
- public static int GradientColorItem_android_color = 0;
-
- // aapt resource value: 1
- public static int GradientColorItem_android_offset = 1;
-
- // aapt resource value: 7
- public static int GradientColor_android_centerColor = 7;
-
- // aapt resource value: 3
- public static int GradientColor_android_centerX = 3;
-
- // aapt resource value: 4
- public static int GradientColor_android_centerY = 4;
-
- // aapt resource value: 1
- public static int GradientColor_android_endColor = 1;
-
- // aapt resource value: 10
- public static int GradientColor_android_endX = 10;
-
- // aapt resource value: 11
- public static int GradientColor_android_endY = 11;
-
- // aapt resource value: 5
- public static int GradientColor_android_gradientRadius = 5;
-
- // aapt resource value: 0
- public static int GradientColor_android_startColor = 0;
-
- // aapt resource value: 8
- public static int GradientColor_android_startX = 8;
-
- // aapt resource value: 9
- public static int GradientColor_android_startY = 9;
-
- // aapt resource value: 6
- public static int GradientColor_android_tileMode = 6;
-
- // aapt resource value: 2
- public static int GradientColor_android_type = 2;
-
- // aapt resource value: { 0x10100AF,0x10100C4,0x1010126,0x1010127,0x1010128,0x7F020065,0x7F020067,0x7F0200A5,0x7F0200C6 }
- public static int[] LinearLayoutCompat = new int[] {
- 16842927,
- 16842948,
- 16843046,
- 16843047,
- 16843048,
- 2130837605,
- 2130837607,
- 2130837669,
- 2130837702};
-
- // aapt resource value: 2
- public static int LinearLayoutCompat_android_baselineAligned = 2;
-
- // aapt resource value: 3
- public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
-
- // aapt resource value: 0
- public static int LinearLayoutCompat_android_gravity = 0;
-
- // aapt resource value: 1
- public static int LinearLayoutCompat_android_orientation = 1;
-
- // aapt resource value: 4
- public static int LinearLayoutCompat_android_weightSum = 4;
-
- // aapt resource value: 5
- public static int LinearLayoutCompat_divider = 5;
-
- // aapt resource value: 6
- public static int LinearLayoutCompat_dividerPadding = 6;
-
- // aapt resource value: { 0x10100B3,0x10100F4,0x10100F5,0x1010181 }
- public static int[] LinearLayoutCompat_Layout = new int[] {
- 16842931,
- 16842996,
- 16842997,
- 16843137};
-
- // aapt resource value: 0
- public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
-
- // aapt resource value: 2
- public static int LinearLayoutCompat_Layout_android_layout_height = 2;
-
- // aapt resource value: 3
- public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
-
- // aapt resource value: 1
- public static int LinearLayoutCompat_Layout_android_layout_width = 1;
-
- // aapt resource value: 7
- public static int LinearLayoutCompat_measureWithLargestChild = 7;
-
- // aapt resource value: 8
- public static int LinearLayoutCompat_showDividers = 8;
-
- // aapt resource value: { 0x10102AC,0x10102AD }
- public static int[] ListPopupWindow = new int[] {
- 16843436,
- 16843437};
-
- // aapt resource value: 0
- public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
-
- // aapt resource value: 1
- public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
-
- // aapt resource value: { 0x101000E,0x10100D0,0x1010194,0x10101DE,0x10101DF,0x10101E0 }
- public static int[] MenuGroup = new int[] {
- 16842766,
- 16842960,
- 16843156,
- 16843230,
- 16843231,
- 16843232};
-
- // aapt resource value: 5
- public static int MenuGroup_android_checkableBehavior = 5;
-
- // aapt resource value: 0
- public static int MenuGroup_android_enabled = 0;
-
- // aapt resource value: 1
- public static int MenuGroup_android_id = 1;
-
- // aapt resource value: 3
- public static int MenuGroup_android_menuCategory = 3;
-
- // aapt resource value: 4
- public static int MenuGroup_android_orderInCategory = 4;
-
- // aapt resource value: 2
- public static int MenuGroup_android_visible = 2;
-
- // aapt resource value: { 0x1010002,0x101000E,0x10100D0,0x1010106,0x1010194,0x10101DE,0x10101DF,0x10101E1,0x10101E2,0x10101E3,0x10101E4,0x10101E5,0x101026F,0x7F02000D,0x7F02001F,0x7F020020,0x7F020028,0x7F020056,0x7F020085,0x7F020086,0x7F0200AA,0x7F0200C5,0x7F0200FF }
- public static int[] MenuItem = new int[] {
- 16842754,
- 16842766,
- 16842960,
- 16843014,
- 16843156,
- 16843230,
- 16843231,
- 16843233,
- 16843234,
- 16843235,
- 16843236,
- 16843237,
- 16843375,
- 2130837517,
- 2130837535,
- 2130837536,
- 2130837544,
- 2130837590,
- 2130837637,
- 2130837638,
- 2130837674,
- 2130837701,
- 2130837759};
-
- // aapt resource value: 13
- public static int MenuItem_actionLayout = 13;
-
- // aapt resource value: 14
- public static int MenuItem_actionProviderClass = 14;
-
- // aapt resource value: 15
- public static int MenuItem_actionViewClass = 15;
-
- // aapt resource value: 16
- public static int MenuItem_alphabeticModifiers = 16;
-
- // aapt resource value: 9
- public static int MenuItem_android_alphabeticShortcut = 9;
-
- // aapt resource value: 11
- public static int MenuItem_android_checkable = 11;
-
- // aapt resource value: 3
- public static int MenuItem_android_checked = 3;
-
- // aapt resource value: 1
- public static int MenuItem_android_enabled = 1;
-
- // aapt resource value: 0
- public static int MenuItem_android_icon = 0;
-
- // aapt resource value: 2
- public static int MenuItem_android_id = 2;
-
- // aapt resource value: 5
- public static int MenuItem_android_menuCategory = 5;
-
- // aapt resource value: 10
- public static int MenuItem_android_numericShortcut = 10;
-
- // aapt resource value: 12
- public static int MenuItem_android_onClick = 12;
-
- // aapt resource value: 6
- public static int MenuItem_android_orderInCategory = 6;
-
- // aapt resource value: 7
- public static int MenuItem_android_title = 7;
-
- // aapt resource value: 8
- public static int MenuItem_android_titleCondensed = 8;
-
- // aapt resource value: 4
- public static int MenuItem_android_visible = 4;
-
- // aapt resource value: 17
- public static int MenuItem_contentDescription = 17;
-
- // aapt resource value: 18
- public static int MenuItem_iconTint = 18;
-
- // aapt resource value: 19
- public static int MenuItem_iconTintMode = 19;
-
- // aapt resource value: 20
- public static int MenuItem_numericModifiers = 20;
-
- // aapt resource value: 21
- public static int MenuItem_showAsAction = 21;
-
- // aapt resource value: 22
- public static int MenuItem_tooltipText = 22;
-
- // aapt resource value: { 0x10100AE,0x101012C,0x101012D,0x101012E,0x101012F,0x1010130,0x1010131,0x7F0200B6,0x7F0200D1 }
- public static int[] MenuView = new int[] {
- 16842926,
- 16843052,
- 16843053,
- 16843054,
- 16843055,
- 16843056,
- 16843057,
- 2130837686,
- 2130837713};
-
- // aapt resource value: 4
- public static int MenuView_android_headerBackground = 4;
-
- // aapt resource value: 2
- public static int MenuView_android_horizontalDivider = 2;
-
- // aapt resource value: 5
- public static int MenuView_android_itemBackground = 5;
-
- // aapt resource value: 6
- public static int MenuView_android_itemIconDisabledAlpha = 6;
-
- // aapt resource value: 1
- public static int MenuView_android_itemTextAppearance = 1;
-
- // aapt resource value: 3
- public static int MenuView_android_verticalDivider = 3;
-
- // aapt resource value: 0
- public static int MenuView_android_windowAnimationStyle = 0;
-
- // aapt resource value: 7
- public static int MenuView_preserveIconSpacing = 7;
-
- // aapt resource value: 8
- public static int MenuView_subMenuArrow = 8;
-
- // aapt resource value: { 0x1010176,0x10102C9,0x7F0200AB }
- public static int[] PopupWindow = new int[] {
- 16843126,
- 16843465,
- 2130837675};
-
- // aapt resource value: { 0x7F0200CF }
- public static int[] PopupWindowBackgroundState = new int[] {
- 2130837711};
-
- // aapt resource value: 0
- public static int PopupWindowBackgroundState_state_above_anchor = 0;
-
- // aapt resource value: 1
- public static int PopupWindow_android_popupAnimationStyle = 1;
-
- // aapt resource value: 0
- public static int PopupWindow_android_popupBackground = 0;
-
- // aapt resource value: 2
- public static int PopupWindow_overlapAnchor = 2;
-
- // aapt resource value: { 0x7F0200AC,0x7F0200AF }
- public static int[] RecycleListView = new int[] {
- 2130837676,
- 2130837679};
-
- // aapt resource value: 0
- public static int RecycleListView_paddingBottomNoButtons = 0;
-
- // aapt resource value: 1
- public static int RecycleListView_paddingTopNoTitle = 1;
-
- // aapt resource value: { 0x10100DA,0x101011F,0x1010220,0x1010264,0x7F020046,0x7F020055,0x7F020060,0x7F02007F,0x7F020087,0x7F02008F,0x7F0200B9,0x7F0200BA,0x7F0200BF,0x7F0200C0,0x7F0200D2,0x7F0200D7,0x7F020105 }
- public static int[] SearchView = new int[] {
- 16842970,
- 16843039,
- 16843296,
- 16843364,
- 2130837574,
- 2130837589,
- 2130837600,
- 2130837631,
- 2130837639,
- 2130837647,
- 2130837689,
- 2130837690,
- 2130837695,
- 2130837696,
- 2130837714,
- 2130837719,
- 2130837765};
-
- // aapt resource value: 0
- public static int SearchView_android_focusable = 0;
-
- // aapt resource value: 3
- public static int SearchView_android_imeOptions = 3;
-
- // aapt resource value: 2
- public static int SearchView_android_inputType = 2;
-
- // aapt resource value: 1
- public static int SearchView_android_maxWidth = 1;
-
- // aapt resource value: 4
- public static int SearchView_closeIcon = 4;
-
- // aapt resource value: 5
- public static int SearchView_commitIcon = 5;
-
- // aapt resource value: 6
- public static int SearchView_defaultQueryHint = 6;
-
- // aapt resource value: 7
- public static int SearchView_goIcon = 7;
-
- // aapt resource value: 8
- public static int SearchView_iconifiedByDefault = 8;
-
- // aapt resource value: 9
- public static int SearchView_layout = 9;
-
- // aapt resource value: 10
- public static int SearchView_queryBackground = 10;
-
- // aapt resource value: 11
- public static int SearchView_queryHint = 11;
-
- // aapt resource value: 12
- public static int SearchView_searchHintIcon = 12;
-
- // aapt resource value: 13
- public static int SearchView_searchIcon = 13;
-
- // aapt resource value: 14
- public static int SearchView_submitBackground = 14;
-
- // aapt resource value: 15
- public static int SearchView_suggestionRowLayout = 15;
-
- // aapt resource value: 16
- public static int SearchView_voiceIcon = 16;
-
- // aapt resource value: { 0x10100B2,0x1010176,0x101017B,0x1010262,0x7F0200B4 }
- public static int[] Spinner = new int[] {
- 16842930,
- 16843126,
- 16843131,
- 16843362,
- 2130837684};
-
- // aapt resource value: 3
- public static int Spinner_android_dropDownWidth = 3;
-
- // aapt resource value: 0
- public static int Spinner_android_entries = 0;
-
- // aapt resource value: 1
- public static int Spinner_android_popupBackground = 1;
-
- // aapt resource value: 2
- public static int Spinner_android_prompt = 2;
-
- // aapt resource value: 4
- public static int Spinner_popupTheme = 4;
-
- // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D }
- public static int[] StateListDrawable = new int[] {
- 16843036,
- 16843156,
- 16843157,
- 16843158,
- 16843532,
- 16843533};
-
- // aapt resource value: { 0x1010199 }
- public static int[] StateListDrawableItem = new int[] {
- 16843161};
-
- // aapt resource value: 0
- public static int StateListDrawableItem_android_drawable = 0;
-
- // aapt resource value: 3
- public static int StateListDrawable_android_constantSize = 3;
-
- // aapt resource value: 0
- public static int StateListDrawable_android_dither = 0;
-
- // aapt resource value: 4
- public static int StateListDrawable_android_enterFadeDuration = 4;
-
- // aapt resource value: 5
- public static int StateListDrawable_android_exitFadeDuration = 5;
-
- // aapt resource value: 2
- public static int StateListDrawable_android_variablePadding = 2;
-
- // aapt resource value: 1
- public static int StateListDrawable_android_visible = 1;
-
- // aapt resource value: { 0x1010124,0x1010125,0x1010142,0x7F0200C7,0x7F0200CD,0x7F0200D8,0x7F0200D9,0x7F0200DB,0x7F0200E9,0x7F0200EA,0x7F0200EB,0x7F020100,0x7F020101,0x7F020102 }
- public static int[] SwitchCompat = new int[] {
- 16843044,
- 16843045,
- 16843074,
- 2130837703,
- 2130837709,
- 2130837720,
- 2130837721,
- 2130837723,
- 2130837737,
- 2130837738,
- 2130837739,
- 2130837760,
- 2130837761,
- 2130837762};
-
- // aapt resource value: 1
- public static int SwitchCompat_android_textOff = 1;
-
- // aapt resource value: 0
- public static int SwitchCompat_android_textOn = 0;
-
- // aapt resource value: 2
- public static int SwitchCompat_android_thumb = 2;
-
- // aapt resource value: 3
- public static int SwitchCompat_showText = 3;
-
- // aapt resource value: 4
- public static int SwitchCompat_splitTrack = 4;
-
- // aapt resource value: 5
- public static int SwitchCompat_switchMinWidth = 5;
-
- // aapt resource value: 6
- public static int SwitchCompat_switchPadding = 6;
-
- // aapt resource value: 7
- public static int SwitchCompat_switchTextAppearance = 7;
-
- // aapt resource value: 8
- public static int SwitchCompat_thumbTextPadding = 8;
-
- // aapt resource value: 9
- public static int SwitchCompat_thumbTint = 9;
-
- // aapt resource value: 10
- public static int SwitchCompat_thumbTintMode = 10;
-
- // aapt resource value: 11
- public static int SwitchCompat_track = 11;
-
- // aapt resource value: 12
- public static int SwitchCompat_trackTint = 12;
-
- // aapt resource value: 13
- public static int SwitchCompat_trackTintMode = 13;
-
- // aapt resource value: { 0x1010095,0x1010096,0x1010097,0x1010098,0x101009A,0x101009B,0x1010161,0x1010162,0x1010163,0x1010164,0x10103AC,0x7F020074,0x7F0200DC }
- public static int[] TextAppearance = new int[] {
- 16842901,
- 16842902,
- 16842903,
- 16842904,
- 16842906,
- 16842907,
- 16843105,
- 16843106,
- 16843107,
- 16843108,
- 16843692,
- 2130837620,
- 2130837724};
-
- // aapt resource value: 10
- public static int TextAppearance_android_fontFamily = 10;
-
- // aapt resource value: 6
- public static int TextAppearance_android_shadowColor = 6;
-
- // aapt resource value: 7
- public static int TextAppearance_android_shadowDx = 7;
-
- // aapt resource value: 8
- public static int TextAppearance_android_shadowDy = 8;
-
- // aapt resource value: 9
- public static int TextAppearance_android_shadowRadius = 9;
-
- // aapt resource value: 3
- public static int TextAppearance_android_textColor = 3;
-
- // aapt resource value: 4
- public static int TextAppearance_android_textColorHint = 4;
-
- // aapt resource value: 5
- public static int TextAppearance_android_textColorLink = 5;
-
- // aapt resource value: 0
- public static int TextAppearance_android_textSize = 0;
-
- // aapt resource value: 2
- public static int TextAppearance_android_textStyle = 2;
-
- // aapt resource value: 1
- public static int TextAppearance_android_typeface = 1;
-
- // aapt resource value: 11
- public static int TextAppearance_fontFamily = 11;
-
- // aapt resource value: 12
- public static int TextAppearance_textAllCaps = 12;
-
- // aapt resource value: { 0x10100AF,0x1010140,0x7F02003D,0x7F020048,0x7F020049,0x7F020057,0x7F020058,0x7F020059,0x7F02005A,0x7F02005B,0x7F02005C,0x7F0200A2,0x7F0200A3,0x7F0200A4,0x7F0200A7,0x7F0200A8,0x7F0200B4,0x7F0200D3,0x7F0200D4,0x7F0200D5,0x7F0200F1,0x7F0200F2,0x7F0200F3,0x7F0200F4,0x7F0200F5,0x7F0200F6,0x7F0200F7,0x7F0200F8,0x7F0200F9 }
- public static int[] Toolbar = new int[] {
- 16842927,
- 16843072,
- 2130837565,
- 2130837576,
- 2130837577,
- 2130837591,
- 2130837592,
- 2130837593,
- 2130837594,
- 2130837595,
- 2130837596,
- 2130837666,
- 2130837667,
- 2130837668,
- 2130837671,
- 2130837672,
- 2130837684,
- 2130837715,
- 2130837716,
- 2130837717,
- 2130837745,
- 2130837746,
- 2130837747,
- 2130837748,
- 2130837749,
- 2130837750,
- 2130837751,
- 2130837752,
- 2130837753};
-
- // aapt resource value: 0
- public static int Toolbar_android_gravity = 0;
-
- // aapt resource value: 1
- public static int Toolbar_android_minHeight = 1;
-
- // aapt resource value: 2
- public static int Toolbar_buttonGravity = 2;
-
- // aapt resource value: 3
- public static int Toolbar_collapseContentDescription = 3;
-
- // aapt resource value: 4
- public static int Toolbar_collapseIcon = 4;
-
- // aapt resource value: 5
- public static int Toolbar_contentInsetEnd = 5;
-
- // aapt resource value: 6
- public static int Toolbar_contentInsetEndWithActions = 6;
-
- // aapt resource value: 7
- public static int Toolbar_contentInsetLeft = 7;
-
- // aapt resource value: 8
- public static int Toolbar_contentInsetRight = 8;
-
- // aapt resource value: 9
- public static int Toolbar_contentInsetStart = 9;
-
- // aapt resource value: 10
- public static int Toolbar_contentInsetStartWithNavigation = 10;
-
- // aapt resource value: 11
- public static int Toolbar_logo = 11;
-
- // aapt resource value: 12
- public static int Toolbar_logoDescription = 12;
-
- // aapt resource value: 13
- public static int Toolbar_maxButtonHeight = 13;
-
- // aapt resource value: 14
- public static int Toolbar_navigationContentDescription = 14;
-
- // aapt resource value: 15
- public static int Toolbar_navigationIcon = 15;
-
- // aapt resource value: 16
- public static int Toolbar_popupTheme = 16;
-
- // aapt resource value: 17
- public static int Toolbar_subtitle = 17;
-
- // aapt resource value: 18
- public static int Toolbar_subtitleTextAppearance = 18;
-
- // aapt resource value: 19
- public static int Toolbar_subtitleTextColor = 19;
-
- // aapt resource value: 20
- public static int Toolbar_title = 20;
-
- // aapt resource value: 21
- public static int Toolbar_titleMargin = 21;
-
- // aapt resource value: 22
- public static int Toolbar_titleMarginBottom = 22;
-
- // aapt resource value: 23
- public static int Toolbar_titleMarginEnd = 23;
-
- // aapt resource value: 26
- public static int Toolbar_titleMargins = 26;
-
- // aapt resource value: 24
- public static int Toolbar_titleMarginStart = 24;
-
- // aapt resource value: 25
- public static int Toolbar_titleMarginTop = 25;
-
- // aapt resource value: 27
- public static int Toolbar_titleTextAppearance = 27;
-
- // aapt resource value: 28
- public static int Toolbar_titleTextColor = 28;
-
- // aapt resource value: { 0x1010000,0x10100DA,0x7F0200AD,0x7F0200AE,0x7F0200E7 }
- public static int[] View = new int[] {
- 16842752,
- 16842970,
- 2130837677,
- 2130837678,
- 2130837735};
-
- // aapt resource value: { 0x10100D4,0x7F020034,0x7F020035 }
- public static int[] ViewBackgroundHelper = new int[] {
- 16842964,
- 2130837556,
- 2130837557};
-
- // aapt resource value: 0
- public static int ViewBackgroundHelper_android_background = 0;
-
- // aapt resource value: 1
- public static int ViewBackgroundHelper_backgroundTint = 1;
-
- // aapt resource value: 2
- public static int ViewBackgroundHelper_backgroundTintMode = 2;
-
- // aapt resource value: { 0x10100D0,0x10100F2,0x10100F3 }
- public static int[] ViewStubCompat = new int[] {
- 16842960,
- 16842994,
- 16842995};
-
- // aapt resource value: 0
- public static int ViewStubCompat_android_id = 0;
-
- // aapt resource value: 2
- public static int ViewStubCompat_android_inflatedId = 2;
-
- // aapt resource value: 1
- public static int ViewStubCompat_android_layout = 1;
-
- // aapt resource value: 1
- public static int View_android_focusable = 1;
-
- // aapt resource value: 0
- public static int View_android_theme = 0;
-
- // aapt resource value: 2
- public static int View_paddingEnd = 2;
-
- // aapt resource value: 3
- public static int View_paddingStart = 3;
-
- // aapt resource value: 4
- public static int View_theme = 4;
-
- static Styleable()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Styleable()
- {
- }
- }
- }
-}
-#pragma warning restore 1591
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Resources/values/strings.xml b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Resources/values/strings.xml
deleted file mode 100644
index 505cfb219..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Resources/values/strings.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- Hello World, Click Me!
- devolutions_crypto
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/devolutions-crypto.csproj b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/devolutions-crypto.csproj
deleted file mode 100644
index 6fdcfc294..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/devolutions-crypto.csproj
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {2FE99B5D-EA97-4701-B004-F2F59E6EEB64}
- {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- {9ef11e43-1701-4396-8835-8392d57abb70}
- Library
- Properties
- devolutions_crypto
- devolutions_crypto
- 512
- Resources\Resource.designer.cs
- Off
- v13.0
- true
-
-
- true
- portable
- false
- bin\Debug\
- DEBUG;TRACE;ANDROID
- prompt
- 4
-
-
- true
- bin\Release\
- TRACE;ANDROID
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- libs\arm64-v8a\libDevolutionsCrypto.so
-
-
- libs\armeabi-v7a\libDevolutionsCrypto.so
-
-
- libs\x86\libDevolutionsCrypto.so
-
-
- libs\x86_64\libDevolutionsCrypto.so
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android.sln b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android.sln
deleted file mode 100644
index c72864a02..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android.sln
+++ /dev/null
@@ -1,31 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 17
-VisualStudioVersion = 17.4.33205.214
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "devolutions-crypto", "devolutions-crypto\devolutions-crypto.csproj", "{2FE99B5D-EA97-4701-B004-F2F59E6EEB64}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xamarin-android", "xamarin-android\xamarin-android.csproj", "{87D2024D-F4EB-49F8-920E-E8EC055BB65A}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {2FE99B5D-EA97-4701-B004-F2F59E6EEB64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {2FE99B5D-EA97-4701-B004-F2F59E6EEB64}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {2FE99B5D-EA97-4701-B004-F2F59E6EEB64}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {2FE99B5D-EA97-4701-B004-F2F59E6EEB64}.Release|Any CPU.Build.0 = Release|Any CPU
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {A3957CCD-15BD-46F9-AD0A-3DDB1BE98B3D}
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Assets/AboutAssets.txt b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Assets/AboutAssets.txt
deleted file mode 100644
index a9b0638eb..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Assets/AboutAssets.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-Any raw assets you want to be deployed with your application can be placed in
-this directory (and child directories) and given a Build Action of "AndroidAsset".
-
-These files will be deployed with your package and will be accessible using Android's
-AssetManager, like this:
-
-public class ReadAsset : Activity
-{
- protected override void OnCreate (Bundle bundle)
- {
- base.OnCreate (bundle);
-
- InputStream input = Assets.Open ("my_asset.txt");
- }
-}
-
-Additionally, some Android functions will automatically load asset files:
-
-Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/MainActivity.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/MainActivity.cs
deleted file mode 100644
index 2d6daa376..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/MainActivity.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using System.Reflection;
-
-using Android.App;
-using Android.OS;
-using Xamarin.Android.NUnitLite;
-
-namespace xamarin_android
-{
- [Activity(Label = "xamarin-android", MainLauncher = true)]
- public class MainActivity : TestSuiteActivity
- {
- protected override void OnCreate(Bundle bundle)
- {
- // tests can be inside the main assembly
- AddTest(Assembly.GetExecutingAssembly());
- // or in any reference assemblies
- // AddTest (typeof (Your.Library.TestClass).Assembly);
-
- // Once you called base.OnCreate(), you cannot add more assemblies.
- base.OnCreate(bundle);
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Properties/AndroidManifest.xml b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Properties/AndroidManifest.xml
deleted file mode 100644
index 4d6948017..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Properties/AndroidManifest.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Properties/AssemblyInfo.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Properties/AssemblyInfo.cs
deleted file mode 100644
index 1c0a72607..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using Android.App;
-
-// Information about this assembly is defined by the following attributes.
-// Change them to the values specific to your project.
-
-[assembly: AssemblyTitle("xamarin-android")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("")]
-[assembly: AssemblyCopyright("")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
-// The form "{Major}.{Minor}.*" will automatically update the build and revision,
-// and "{Major}.{Minor}.{Build}.*" will update just the revision.
-
-[assembly: AssemblyVersion("1.0.0")]
-
-// The following attributes are used to specify the signing key for the assembly,
-// if desired. See the Mono documentation for more information about signing.
-
-//[assembly: AssemblyDelaySign(false)]
-//[assembly: AssemblyKeyFile("")]
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/AboutResources.txt b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/AboutResources.txt
deleted file mode 100644
index 10f52d460..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/AboutResources.txt
+++ /dev/null
@@ -1,44 +0,0 @@
-Images, layout descriptions, binary blobs and string dictionaries can be included
-in your application as resource files. Various Android APIs are designed to
-operate on the resource IDs instead of dealing with images, strings or binary blobs
-directly.
-
-For example, a sample Android app that contains a user interface layout (main.axml),
-an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
-would keep its resources in the "Resources" directory of the application:
-
-Resources/
- drawable/
- icon.png
-
- layout/
- main.axml
-
- values/
- strings.xml
-
-In order to get the build system to recognize Android resources, set the build action to
-"AndroidResource". The native Android APIs do not operate directly with filenames, but
-instead operate on resource IDs. When you compile an Android application that uses resources,
-the build system will package the resources for distribution and generate a class called "R"
-(this is an Android convention) that contains the tokens for each one of the resources
-included. For example, for the above Resources layout, this is what the R class would expose:
-
-public class R {
- public class drawable {
- public const int icon = 0x123;
- }
-
- public class layout {
- public const int main = 0x456;
- }
-
- public class strings {
- public const int first_string = 0xabc;
- public const int second_string = 0xbcd;
- }
-}
-
-You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main
-to reference the layout/main.axml file, or R.strings.first_string to reference the first
-string in the dictionary file values/strings.xml.
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/Resource.designer.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/Resource.designer.cs
deleted file mode 100644
index a98931cc8..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/Resource.designer.cs
+++ /dev/null
@@ -1,7147 +0,0 @@
-#pragma warning disable 1591
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-[assembly: global::Android.Runtime.ResourceDesignerAttribute("xamarin_android.Resource", IsApplication=true)]
-
-namespace xamarin_android
-{
-
-
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "13.1.0.5")]
- public partial class Resource
- {
-
- static Resource()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- public static void UpdateIdValues()
- {
- global::devolutions_crypto.Resource.Animation.abc_fade_in = global::xamarin_android.Resource.Animation.abc_fade_in;
- global::devolutions_crypto.Resource.Animation.abc_fade_out = global::xamarin_android.Resource.Animation.abc_fade_out;
- global::devolutions_crypto.Resource.Animation.abc_grow_fade_in_from_bottom = global::xamarin_android.Resource.Animation.abc_grow_fade_in_from_bottom;
- global::devolutions_crypto.Resource.Animation.abc_popup_enter = global::xamarin_android.Resource.Animation.abc_popup_enter;
- global::devolutions_crypto.Resource.Animation.abc_popup_exit = global::xamarin_android.Resource.Animation.abc_popup_exit;
- global::devolutions_crypto.Resource.Animation.abc_shrink_fade_out_from_bottom = global::xamarin_android.Resource.Animation.abc_shrink_fade_out_from_bottom;
- global::devolutions_crypto.Resource.Animation.abc_slide_in_bottom = global::xamarin_android.Resource.Animation.abc_slide_in_bottom;
- global::devolutions_crypto.Resource.Animation.abc_slide_in_top = global::xamarin_android.Resource.Animation.abc_slide_in_top;
- global::devolutions_crypto.Resource.Animation.abc_slide_out_bottom = global::xamarin_android.Resource.Animation.abc_slide_out_bottom;
- global::devolutions_crypto.Resource.Animation.abc_slide_out_top = global::xamarin_android.Resource.Animation.abc_slide_out_top;
- global::devolutions_crypto.Resource.Animation.abc_tooltip_enter = global::xamarin_android.Resource.Animation.abc_tooltip_enter;
- global::devolutions_crypto.Resource.Animation.abc_tooltip_exit = global::xamarin_android.Resource.Animation.abc_tooltip_exit;
- global::devolutions_crypto.Resource.Attribute.actionBarDivider = global::xamarin_android.Resource.Attribute.actionBarDivider;
- global::devolutions_crypto.Resource.Attribute.actionBarItemBackground = global::xamarin_android.Resource.Attribute.actionBarItemBackground;
- global::devolutions_crypto.Resource.Attribute.actionBarPopupTheme = global::xamarin_android.Resource.Attribute.actionBarPopupTheme;
- global::devolutions_crypto.Resource.Attribute.actionBarSize = global::xamarin_android.Resource.Attribute.actionBarSize;
- global::devolutions_crypto.Resource.Attribute.actionBarSplitStyle = global::xamarin_android.Resource.Attribute.actionBarSplitStyle;
- global::devolutions_crypto.Resource.Attribute.actionBarStyle = global::xamarin_android.Resource.Attribute.actionBarStyle;
- global::devolutions_crypto.Resource.Attribute.actionBarTabBarStyle = global::xamarin_android.Resource.Attribute.actionBarTabBarStyle;
- global::devolutions_crypto.Resource.Attribute.actionBarTabStyle = global::xamarin_android.Resource.Attribute.actionBarTabStyle;
- global::devolutions_crypto.Resource.Attribute.actionBarTabTextStyle = global::xamarin_android.Resource.Attribute.actionBarTabTextStyle;
- global::devolutions_crypto.Resource.Attribute.actionBarTheme = global::xamarin_android.Resource.Attribute.actionBarTheme;
- global::devolutions_crypto.Resource.Attribute.actionBarWidgetTheme = global::xamarin_android.Resource.Attribute.actionBarWidgetTheme;
- global::devolutions_crypto.Resource.Attribute.actionButtonStyle = global::xamarin_android.Resource.Attribute.actionButtonStyle;
- global::devolutions_crypto.Resource.Attribute.actionDropDownStyle = global::xamarin_android.Resource.Attribute.actionDropDownStyle;
- global::devolutions_crypto.Resource.Attribute.actionLayout = global::xamarin_android.Resource.Attribute.actionLayout;
- global::devolutions_crypto.Resource.Attribute.actionMenuTextAppearance = global::xamarin_android.Resource.Attribute.actionMenuTextAppearance;
- global::devolutions_crypto.Resource.Attribute.actionMenuTextColor = global::xamarin_android.Resource.Attribute.actionMenuTextColor;
- global::devolutions_crypto.Resource.Attribute.actionModeBackground = global::xamarin_android.Resource.Attribute.actionModeBackground;
- global::devolutions_crypto.Resource.Attribute.actionModeCloseButtonStyle = global::xamarin_android.Resource.Attribute.actionModeCloseButtonStyle;
- global::devolutions_crypto.Resource.Attribute.actionModeCloseDrawable = global::xamarin_android.Resource.Attribute.actionModeCloseDrawable;
- global::devolutions_crypto.Resource.Attribute.actionModeCopyDrawable = global::xamarin_android.Resource.Attribute.actionModeCopyDrawable;
- global::devolutions_crypto.Resource.Attribute.actionModeCutDrawable = global::xamarin_android.Resource.Attribute.actionModeCutDrawable;
- global::devolutions_crypto.Resource.Attribute.actionModeFindDrawable = global::xamarin_android.Resource.Attribute.actionModeFindDrawable;
- global::devolutions_crypto.Resource.Attribute.actionModePasteDrawable = global::xamarin_android.Resource.Attribute.actionModePasteDrawable;
- global::devolutions_crypto.Resource.Attribute.actionModePopupWindowStyle = global::xamarin_android.Resource.Attribute.actionModePopupWindowStyle;
- global::devolutions_crypto.Resource.Attribute.actionModeSelectAllDrawable = global::xamarin_android.Resource.Attribute.actionModeSelectAllDrawable;
- global::devolutions_crypto.Resource.Attribute.actionModeShareDrawable = global::xamarin_android.Resource.Attribute.actionModeShareDrawable;
- global::devolutions_crypto.Resource.Attribute.actionModeSplitBackground = global::xamarin_android.Resource.Attribute.actionModeSplitBackground;
- global::devolutions_crypto.Resource.Attribute.actionModeStyle = global::xamarin_android.Resource.Attribute.actionModeStyle;
- global::devolutions_crypto.Resource.Attribute.actionModeWebSearchDrawable = global::xamarin_android.Resource.Attribute.actionModeWebSearchDrawable;
- global::devolutions_crypto.Resource.Attribute.actionOverflowButtonStyle = global::xamarin_android.Resource.Attribute.actionOverflowButtonStyle;
- global::devolutions_crypto.Resource.Attribute.actionOverflowMenuStyle = global::xamarin_android.Resource.Attribute.actionOverflowMenuStyle;
- global::devolutions_crypto.Resource.Attribute.actionProviderClass = global::xamarin_android.Resource.Attribute.actionProviderClass;
- global::devolutions_crypto.Resource.Attribute.actionViewClass = global::xamarin_android.Resource.Attribute.actionViewClass;
- global::devolutions_crypto.Resource.Attribute.activityChooserViewStyle = global::xamarin_android.Resource.Attribute.activityChooserViewStyle;
- global::devolutions_crypto.Resource.Attribute.alertDialogButtonGroupStyle = global::xamarin_android.Resource.Attribute.alertDialogButtonGroupStyle;
- global::devolutions_crypto.Resource.Attribute.alertDialogCenterButtons = global::xamarin_android.Resource.Attribute.alertDialogCenterButtons;
- global::devolutions_crypto.Resource.Attribute.alertDialogStyle = global::xamarin_android.Resource.Attribute.alertDialogStyle;
- global::devolutions_crypto.Resource.Attribute.alertDialogTheme = global::xamarin_android.Resource.Attribute.alertDialogTheme;
- global::devolutions_crypto.Resource.Attribute.allowStacking = global::xamarin_android.Resource.Attribute.allowStacking;
- global::devolutions_crypto.Resource.Attribute.alpha = global::xamarin_android.Resource.Attribute.alpha;
- global::devolutions_crypto.Resource.Attribute.alphabeticModifiers = global::xamarin_android.Resource.Attribute.alphabeticModifiers;
- global::devolutions_crypto.Resource.Attribute.arrowHeadLength = global::xamarin_android.Resource.Attribute.arrowHeadLength;
- global::devolutions_crypto.Resource.Attribute.arrowShaftLength = global::xamarin_android.Resource.Attribute.arrowShaftLength;
- global::devolutions_crypto.Resource.Attribute.autoCompleteTextViewStyle = global::xamarin_android.Resource.Attribute.autoCompleteTextViewStyle;
- global::devolutions_crypto.Resource.Attribute.autoSizeMaxTextSize = global::xamarin_android.Resource.Attribute.autoSizeMaxTextSize;
- global::devolutions_crypto.Resource.Attribute.autoSizeMinTextSize = global::xamarin_android.Resource.Attribute.autoSizeMinTextSize;
- global::devolutions_crypto.Resource.Attribute.autoSizePresetSizes = global::xamarin_android.Resource.Attribute.autoSizePresetSizes;
- global::devolutions_crypto.Resource.Attribute.autoSizeStepGranularity = global::xamarin_android.Resource.Attribute.autoSizeStepGranularity;
- global::devolutions_crypto.Resource.Attribute.autoSizeTextType = global::xamarin_android.Resource.Attribute.autoSizeTextType;
- global::devolutions_crypto.Resource.Attribute.background = global::xamarin_android.Resource.Attribute.background;
- global::devolutions_crypto.Resource.Attribute.backgroundSplit = global::xamarin_android.Resource.Attribute.backgroundSplit;
- global::devolutions_crypto.Resource.Attribute.backgroundStacked = global::xamarin_android.Resource.Attribute.backgroundStacked;
- global::devolutions_crypto.Resource.Attribute.backgroundTint = global::xamarin_android.Resource.Attribute.backgroundTint;
- global::devolutions_crypto.Resource.Attribute.backgroundTintMode = global::xamarin_android.Resource.Attribute.backgroundTintMode;
- global::devolutions_crypto.Resource.Attribute.barLength = global::xamarin_android.Resource.Attribute.barLength;
- global::devolutions_crypto.Resource.Attribute.borderlessButtonStyle = global::xamarin_android.Resource.Attribute.borderlessButtonStyle;
- global::devolutions_crypto.Resource.Attribute.buttonBarButtonStyle = global::xamarin_android.Resource.Attribute.buttonBarButtonStyle;
- global::devolutions_crypto.Resource.Attribute.buttonBarNegativeButtonStyle = global::xamarin_android.Resource.Attribute.buttonBarNegativeButtonStyle;
- global::devolutions_crypto.Resource.Attribute.buttonBarNeutralButtonStyle = global::xamarin_android.Resource.Attribute.buttonBarNeutralButtonStyle;
- global::devolutions_crypto.Resource.Attribute.buttonBarPositiveButtonStyle = global::xamarin_android.Resource.Attribute.buttonBarPositiveButtonStyle;
- global::devolutions_crypto.Resource.Attribute.buttonBarStyle = global::xamarin_android.Resource.Attribute.buttonBarStyle;
- global::devolutions_crypto.Resource.Attribute.buttonGravity = global::xamarin_android.Resource.Attribute.buttonGravity;
- global::devolutions_crypto.Resource.Attribute.buttonIconDimen = global::xamarin_android.Resource.Attribute.buttonIconDimen;
- global::devolutions_crypto.Resource.Attribute.buttonPanelSideLayout = global::xamarin_android.Resource.Attribute.buttonPanelSideLayout;
- global::devolutions_crypto.Resource.Attribute.buttonStyle = global::xamarin_android.Resource.Attribute.buttonStyle;
- global::devolutions_crypto.Resource.Attribute.buttonStyleSmall = global::xamarin_android.Resource.Attribute.buttonStyleSmall;
- global::devolutions_crypto.Resource.Attribute.buttonTint = global::xamarin_android.Resource.Attribute.buttonTint;
- global::devolutions_crypto.Resource.Attribute.buttonTintMode = global::xamarin_android.Resource.Attribute.buttonTintMode;
- global::devolutions_crypto.Resource.Attribute.checkboxStyle = global::xamarin_android.Resource.Attribute.checkboxStyle;
- global::devolutions_crypto.Resource.Attribute.checkedTextViewStyle = global::xamarin_android.Resource.Attribute.checkedTextViewStyle;
- global::devolutions_crypto.Resource.Attribute.closeIcon = global::xamarin_android.Resource.Attribute.closeIcon;
- global::devolutions_crypto.Resource.Attribute.closeItemLayout = global::xamarin_android.Resource.Attribute.closeItemLayout;
- global::devolutions_crypto.Resource.Attribute.collapseContentDescription = global::xamarin_android.Resource.Attribute.collapseContentDescription;
- global::devolutions_crypto.Resource.Attribute.collapseIcon = global::xamarin_android.Resource.Attribute.collapseIcon;
- global::devolutions_crypto.Resource.Attribute.color = global::xamarin_android.Resource.Attribute.color;
- global::devolutions_crypto.Resource.Attribute.colorAccent = global::xamarin_android.Resource.Attribute.colorAccent;
- global::devolutions_crypto.Resource.Attribute.colorBackgroundFloating = global::xamarin_android.Resource.Attribute.colorBackgroundFloating;
- global::devolutions_crypto.Resource.Attribute.colorButtonNormal = global::xamarin_android.Resource.Attribute.colorButtonNormal;
- global::devolutions_crypto.Resource.Attribute.colorControlActivated = global::xamarin_android.Resource.Attribute.colorControlActivated;
- global::devolutions_crypto.Resource.Attribute.colorControlHighlight = global::xamarin_android.Resource.Attribute.colorControlHighlight;
- global::devolutions_crypto.Resource.Attribute.colorControlNormal = global::xamarin_android.Resource.Attribute.colorControlNormal;
- global::devolutions_crypto.Resource.Attribute.colorError = global::xamarin_android.Resource.Attribute.colorError;
- global::devolutions_crypto.Resource.Attribute.colorPrimary = global::xamarin_android.Resource.Attribute.colorPrimary;
- global::devolutions_crypto.Resource.Attribute.colorPrimaryDark = global::xamarin_android.Resource.Attribute.colorPrimaryDark;
- global::devolutions_crypto.Resource.Attribute.colorSwitchThumbNormal = global::xamarin_android.Resource.Attribute.colorSwitchThumbNormal;
- global::devolutions_crypto.Resource.Attribute.commitIcon = global::xamarin_android.Resource.Attribute.commitIcon;
- global::devolutions_crypto.Resource.Attribute.contentDescription = global::xamarin_android.Resource.Attribute.contentDescription;
- global::devolutions_crypto.Resource.Attribute.contentInsetEnd = global::xamarin_android.Resource.Attribute.contentInsetEnd;
- global::devolutions_crypto.Resource.Attribute.contentInsetEndWithActions = global::xamarin_android.Resource.Attribute.contentInsetEndWithActions;
- global::devolutions_crypto.Resource.Attribute.contentInsetLeft = global::xamarin_android.Resource.Attribute.contentInsetLeft;
- global::devolutions_crypto.Resource.Attribute.contentInsetRight = global::xamarin_android.Resource.Attribute.contentInsetRight;
- global::devolutions_crypto.Resource.Attribute.contentInsetStart = global::xamarin_android.Resource.Attribute.contentInsetStart;
- global::devolutions_crypto.Resource.Attribute.contentInsetStartWithNavigation = global::xamarin_android.Resource.Attribute.contentInsetStartWithNavigation;
- global::devolutions_crypto.Resource.Attribute.controlBackground = global::xamarin_android.Resource.Attribute.controlBackground;
- global::devolutions_crypto.Resource.Attribute.coordinatorLayoutStyle = global::xamarin_android.Resource.Attribute.coordinatorLayoutStyle;
- global::devolutions_crypto.Resource.Attribute.customNavigationLayout = global::xamarin_android.Resource.Attribute.customNavigationLayout;
- global::devolutions_crypto.Resource.Attribute.defaultQueryHint = global::xamarin_android.Resource.Attribute.defaultQueryHint;
- global::devolutions_crypto.Resource.Attribute.dialogCornerRadius = global::xamarin_android.Resource.Attribute.dialogCornerRadius;
- global::devolutions_crypto.Resource.Attribute.dialogPreferredPadding = global::xamarin_android.Resource.Attribute.dialogPreferredPadding;
- global::devolutions_crypto.Resource.Attribute.dialogTheme = global::xamarin_android.Resource.Attribute.dialogTheme;
- global::devolutions_crypto.Resource.Attribute.displayOptions = global::xamarin_android.Resource.Attribute.displayOptions;
- global::devolutions_crypto.Resource.Attribute.divider = global::xamarin_android.Resource.Attribute.divider;
- global::devolutions_crypto.Resource.Attribute.dividerHorizontal = global::xamarin_android.Resource.Attribute.dividerHorizontal;
- global::devolutions_crypto.Resource.Attribute.dividerPadding = global::xamarin_android.Resource.Attribute.dividerPadding;
- global::devolutions_crypto.Resource.Attribute.dividerVertical = global::xamarin_android.Resource.Attribute.dividerVertical;
- global::devolutions_crypto.Resource.Attribute.drawableSize = global::xamarin_android.Resource.Attribute.drawableSize;
- global::devolutions_crypto.Resource.Attribute.drawerArrowStyle = global::xamarin_android.Resource.Attribute.drawerArrowStyle;
- global::devolutions_crypto.Resource.Attribute.dropdownListPreferredItemHeight = global::xamarin_android.Resource.Attribute.dropdownListPreferredItemHeight;
- global::devolutions_crypto.Resource.Attribute.dropDownListViewStyle = global::xamarin_android.Resource.Attribute.dropDownListViewStyle;
- global::devolutions_crypto.Resource.Attribute.editTextBackground = global::xamarin_android.Resource.Attribute.editTextBackground;
- global::devolutions_crypto.Resource.Attribute.editTextColor = global::xamarin_android.Resource.Attribute.editTextColor;
- global::devolutions_crypto.Resource.Attribute.editTextStyle = global::xamarin_android.Resource.Attribute.editTextStyle;
- global::devolutions_crypto.Resource.Attribute.elevation = global::xamarin_android.Resource.Attribute.elevation;
- global::devolutions_crypto.Resource.Attribute.expandActivityOverflowButtonDrawable = global::xamarin_android.Resource.Attribute.expandActivityOverflowButtonDrawable;
- global::devolutions_crypto.Resource.Attribute.firstBaselineToTopHeight = global::xamarin_android.Resource.Attribute.firstBaselineToTopHeight;
- global::devolutions_crypto.Resource.Attribute.font = global::xamarin_android.Resource.Attribute.font;
- global::devolutions_crypto.Resource.Attribute.fontFamily = global::xamarin_android.Resource.Attribute.fontFamily;
- global::devolutions_crypto.Resource.Attribute.fontProviderAuthority = global::xamarin_android.Resource.Attribute.fontProviderAuthority;
- global::devolutions_crypto.Resource.Attribute.fontProviderCerts = global::xamarin_android.Resource.Attribute.fontProviderCerts;
- global::devolutions_crypto.Resource.Attribute.fontProviderFetchStrategy = global::xamarin_android.Resource.Attribute.fontProviderFetchStrategy;
- global::devolutions_crypto.Resource.Attribute.fontProviderFetchTimeout = global::xamarin_android.Resource.Attribute.fontProviderFetchTimeout;
- global::devolutions_crypto.Resource.Attribute.fontProviderPackage = global::xamarin_android.Resource.Attribute.fontProviderPackage;
- global::devolutions_crypto.Resource.Attribute.fontProviderQuery = global::xamarin_android.Resource.Attribute.fontProviderQuery;
- global::devolutions_crypto.Resource.Attribute.fontStyle = global::xamarin_android.Resource.Attribute.fontStyle;
- global::devolutions_crypto.Resource.Attribute.fontVariationSettings = global::xamarin_android.Resource.Attribute.fontVariationSettings;
- global::devolutions_crypto.Resource.Attribute.fontWeight = global::xamarin_android.Resource.Attribute.fontWeight;
- global::devolutions_crypto.Resource.Attribute.gapBetweenBars = global::xamarin_android.Resource.Attribute.gapBetweenBars;
- global::devolutions_crypto.Resource.Attribute.goIcon = global::xamarin_android.Resource.Attribute.goIcon;
- global::devolutions_crypto.Resource.Attribute.height = global::xamarin_android.Resource.Attribute.height;
- global::devolutions_crypto.Resource.Attribute.hideOnContentScroll = global::xamarin_android.Resource.Attribute.hideOnContentScroll;
- global::devolutions_crypto.Resource.Attribute.homeAsUpIndicator = global::xamarin_android.Resource.Attribute.homeAsUpIndicator;
- global::devolutions_crypto.Resource.Attribute.homeLayout = global::xamarin_android.Resource.Attribute.homeLayout;
- global::devolutions_crypto.Resource.Attribute.icon = global::xamarin_android.Resource.Attribute.icon;
- global::devolutions_crypto.Resource.Attribute.iconifiedByDefault = global::xamarin_android.Resource.Attribute.iconifiedByDefault;
- global::devolutions_crypto.Resource.Attribute.iconTint = global::xamarin_android.Resource.Attribute.iconTint;
- global::devolutions_crypto.Resource.Attribute.iconTintMode = global::xamarin_android.Resource.Attribute.iconTintMode;
- global::devolutions_crypto.Resource.Attribute.imageButtonStyle = global::xamarin_android.Resource.Attribute.imageButtonStyle;
- global::devolutions_crypto.Resource.Attribute.indeterminateProgressStyle = global::xamarin_android.Resource.Attribute.indeterminateProgressStyle;
- global::devolutions_crypto.Resource.Attribute.initialActivityCount = global::xamarin_android.Resource.Attribute.initialActivityCount;
- global::devolutions_crypto.Resource.Attribute.isLightTheme = global::xamarin_android.Resource.Attribute.isLightTheme;
- global::devolutions_crypto.Resource.Attribute.itemPadding = global::xamarin_android.Resource.Attribute.itemPadding;
- global::devolutions_crypto.Resource.Attribute.keylines = global::xamarin_android.Resource.Attribute.keylines;
- global::devolutions_crypto.Resource.Attribute.lastBaselineToBottomHeight = global::xamarin_android.Resource.Attribute.lastBaselineToBottomHeight;
- global::devolutions_crypto.Resource.Attribute.layout = global::xamarin_android.Resource.Attribute.layout;
- global::devolutions_crypto.Resource.Attribute.layout_anchor = global::xamarin_android.Resource.Attribute.layout_anchor;
- global::devolutions_crypto.Resource.Attribute.layout_anchorGravity = global::xamarin_android.Resource.Attribute.layout_anchorGravity;
- global::devolutions_crypto.Resource.Attribute.layout_behavior = global::xamarin_android.Resource.Attribute.layout_behavior;
- global::devolutions_crypto.Resource.Attribute.layout_dodgeInsetEdges = global::xamarin_android.Resource.Attribute.layout_dodgeInsetEdges;
- global::devolutions_crypto.Resource.Attribute.layout_insetEdge = global::xamarin_android.Resource.Attribute.layout_insetEdge;
- global::devolutions_crypto.Resource.Attribute.layout_keyline = global::xamarin_android.Resource.Attribute.layout_keyline;
- global::devolutions_crypto.Resource.Attribute.lineHeight = global::xamarin_android.Resource.Attribute.lineHeight;
- global::devolutions_crypto.Resource.Attribute.listChoiceBackgroundIndicator = global::xamarin_android.Resource.Attribute.listChoiceBackgroundIndicator;
- global::devolutions_crypto.Resource.Attribute.listDividerAlertDialog = global::xamarin_android.Resource.Attribute.listDividerAlertDialog;
- global::devolutions_crypto.Resource.Attribute.listItemLayout = global::xamarin_android.Resource.Attribute.listItemLayout;
- global::devolutions_crypto.Resource.Attribute.listLayout = global::xamarin_android.Resource.Attribute.listLayout;
- global::devolutions_crypto.Resource.Attribute.listMenuViewStyle = global::xamarin_android.Resource.Attribute.listMenuViewStyle;
- global::devolutions_crypto.Resource.Attribute.listPopupWindowStyle = global::xamarin_android.Resource.Attribute.listPopupWindowStyle;
- global::devolutions_crypto.Resource.Attribute.listPreferredItemHeight = global::xamarin_android.Resource.Attribute.listPreferredItemHeight;
- global::devolutions_crypto.Resource.Attribute.listPreferredItemHeightLarge = global::xamarin_android.Resource.Attribute.listPreferredItemHeightLarge;
- global::devolutions_crypto.Resource.Attribute.listPreferredItemHeightSmall = global::xamarin_android.Resource.Attribute.listPreferredItemHeightSmall;
- global::devolutions_crypto.Resource.Attribute.listPreferredItemPaddingLeft = global::xamarin_android.Resource.Attribute.listPreferredItemPaddingLeft;
- global::devolutions_crypto.Resource.Attribute.listPreferredItemPaddingRight = global::xamarin_android.Resource.Attribute.listPreferredItemPaddingRight;
- global::devolutions_crypto.Resource.Attribute.logo = global::xamarin_android.Resource.Attribute.logo;
- global::devolutions_crypto.Resource.Attribute.logoDescription = global::xamarin_android.Resource.Attribute.logoDescription;
- global::devolutions_crypto.Resource.Attribute.maxButtonHeight = global::xamarin_android.Resource.Attribute.maxButtonHeight;
- global::devolutions_crypto.Resource.Attribute.measureWithLargestChild = global::xamarin_android.Resource.Attribute.measureWithLargestChild;
- global::devolutions_crypto.Resource.Attribute.multiChoiceItemLayout = global::xamarin_android.Resource.Attribute.multiChoiceItemLayout;
- global::devolutions_crypto.Resource.Attribute.navigationContentDescription = global::xamarin_android.Resource.Attribute.navigationContentDescription;
- global::devolutions_crypto.Resource.Attribute.navigationIcon = global::xamarin_android.Resource.Attribute.navigationIcon;
- global::devolutions_crypto.Resource.Attribute.navigationMode = global::xamarin_android.Resource.Attribute.navigationMode;
- global::devolutions_crypto.Resource.Attribute.numericModifiers = global::xamarin_android.Resource.Attribute.numericModifiers;
- global::devolutions_crypto.Resource.Attribute.overlapAnchor = global::xamarin_android.Resource.Attribute.overlapAnchor;
- global::devolutions_crypto.Resource.Attribute.paddingBottomNoButtons = global::xamarin_android.Resource.Attribute.paddingBottomNoButtons;
- global::devolutions_crypto.Resource.Attribute.paddingEnd = global::xamarin_android.Resource.Attribute.paddingEnd;
- global::devolutions_crypto.Resource.Attribute.paddingStart = global::xamarin_android.Resource.Attribute.paddingStart;
- global::devolutions_crypto.Resource.Attribute.paddingTopNoTitle = global::xamarin_android.Resource.Attribute.paddingTopNoTitle;
- global::devolutions_crypto.Resource.Attribute.panelBackground = global::xamarin_android.Resource.Attribute.panelBackground;
- global::devolutions_crypto.Resource.Attribute.panelMenuListTheme = global::xamarin_android.Resource.Attribute.panelMenuListTheme;
- global::devolutions_crypto.Resource.Attribute.panelMenuListWidth = global::xamarin_android.Resource.Attribute.panelMenuListWidth;
- global::devolutions_crypto.Resource.Attribute.popupMenuStyle = global::xamarin_android.Resource.Attribute.popupMenuStyle;
- global::devolutions_crypto.Resource.Attribute.popupTheme = global::xamarin_android.Resource.Attribute.popupTheme;
- global::devolutions_crypto.Resource.Attribute.popupWindowStyle = global::xamarin_android.Resource.Attribute.popupWindowStyle;
- global::devolutions_crypto.Resource.Attribute.preserveIconSpacing = global::xamarin_android.Resource.Attribute.preserveIconSpacing;
- global::devolutions_crypto.Resource.Attribute.progressBarPadding = global::xamarin_android.Resource.Attribute.progressBarPadding;
- global::devolutions_crypto.Resource.Attribute.progressBarStyle = global::xamarin_android.Resource.Attribute.progressBarStyle;
- global::devolutions_crypto.Resource.Attribute.queryBackground = global::xamarin_android.Resource.Attribute.queryBackground;
- global::devolutions_crypto.Resource.Attribute.queryHint = global::xamarin_android.Resource.Attribute.queryHint;
- global::devolutions_crypto.Resource.Attribute.radioButtonStyle = global::xamarin_android.Resource.Attribute.radioButtonStyle;
- global::devolutions_crypto.Resource.Attribute.ratingBarStyle = global::xamarin_android.Resource.Attribute.ratingBarStyle;
- global::devolutions_crypto.Resource.Attribute.ratingBarStyleIndicator = global::xamarin_android.Resource.Attribute.ratingBarStyleIndicator;
- global::devolutions_crypto.Resource.Attribute.ratingBarStyleSmall = global::xamarin_android.Resource.Attribute.ratingBarStyleSmall;
- global::devolutions_crypto.Resource.Attribute.searchHintIcon = global::xamarin_android.Resource.Attribute.searchHintIcon;
- global::devolutions_crypto.Resource.Attribute.searchIcon = global::xamarin_android.Resource.Attribute.searchIcon;
- global::devolutions_crypto.Resource.Attribute.searchViewStyle = global::xamarin_android.Resource.Attribute.searchViewStyle;
- global::devolutions_crypto.Resource.Attribute.seekBarStyle = global::xamarin_android.Resource.Attribute.seekBarStyle;
- global::devolutions_crypto.Resource.Attribute.selectableItemBackground = global::xamarin_android.Resource.Attribute.selectableItemBackground;
- global::devolutions_crypto.Resource.Attribute.selectableItemBackgroundBorderless = global::xamarin_android.Resource.Attribute.selectableItemBackgroundBorderless;
- global::devolutions_crypto.Resource.Attribute.showAsAction = global::xamarin_android.Resource.Attribute.showAsAction;
- global::devolutions_crypto.Resource.Attribute.showDividers = global::xamarin_android.Resource.Attribute.showDividers;
- global::devolutions_crypto.Resource.Attribute.showText = global::xamarin_android.Resource.Attribute.showText;
- global::devolutions_crypto.Resource.Attribute.showTitle = global::xamarin_android.Resource.Attribute.showTitle;
- global::devolutions_crypto.Resource.Attribute.singleChoiceItemLayout = global::xamarin_android.Resource.Attribute.singleChoiceItemLayout;
- global::devolutions_crypto.Resource.Attribute.spinBars = global::xamarin_android.Resource.Attribute.spinBars;
- global::devolutions_crypto.Resource.Attribute.spinnerDropDownItemStyle = global::xamarin_android.Resource.Attribute.spinnerDropDownItemStyle;
- global::devolutions_crypto.Resource.Attribute.spinnerStyle = global::xamarin_android.Resource.Attribute.spinnerStyle;
- global::devolutions_crypto.Resource.Attribute.splitTrack = global::xamarin_android.Resource.Attribute.splitTrack;
- global::devolutions_crypto.Resource.Attribute.srcCompat = global::xamarin_android.Resource.Attribute.srcCompat;
- global::devolutions_crypto.Resource.Attribute.state_above_anchor = global::xamarin_android.Resource.Attribute.state_above_anchor;
- global::devolutions_crypto.Resource.Attribute.statusBarBackground = global::xamarin_android.Resource.Attribute.statusBarBackground;
- global::devolutions_crypto.Resource.Attribute.subMenuArrow = global::xamarin_android.Resource.Attribute.subMenuArrow;
- global::devolutions_crypto.Resource.Attribute.submitBackground = global::xamarin_android.Resource.Attribute.submitBackground;
- global::devolutions_crypto.Resource.Attribute.subtitle = global::xamarin_android.Resource.Attribute.subtitle;
- global::devolutions_crypto.Resource.Attribute.subtitleTextAppearance = global::xamarin_android.Resource.Attribute.subtitleTextAppearance;
- global::devolutions_crypto.Resource.Attribute.subtitleTextColor = global::xamarin_android.Resource.Attribute.subtitleTextColor;
- global::devolutions_crypto.Resource.Attribute.subtitleTextStyle = global::xamarin_android.Resource.Attribute.subtitleTextStyle;
- global::devolutions_crypto.Resource.Attribute.suggestionRowLayout = global::xamarin_android.Resource.Attribute.suggestionRowLayout;
- global::devolutions_crypto.Resource.Attribute.switchMinWidth = global::xamarin_android.Resource.Attribute.switchMinWidth;
- global::devolutions_crypto.Resource.Attribute.switchPadding = global::xamarin_android.Resource.Attribute.switchPadding;
- global::devolutions_crypto.Resource.Attribute.switchStyle = global::xamarin_android.Resource.Attribute.switchStyle;
- global::devolutions_crypto.Resource.Attribute.switchTextAppearance = global::xamarin_android.Resource.Attribute.switchTextAppearance;
- global::devolutions_crypto.Resource.Attribute.textAllCaps = global::xamarin_android.Resource.Attribute.textAllCaps;
- global::devolutions_crypto.Resource.Attribute.textAppearanceLargePopupMenu = global::xamarin_android.Resource.Attribute.textAppearanceLargePopupMenu;
- global::devolutions_crypto.Resource.Attribute.textAppearanceListItem = global::xamarin_android.Resource.Attribute.textAppearanceListItem;
- global::devolutions_crypto.Resource.Attribute.textAppearanceListItemSecondary = global::xamarin_android.Resource.Attribute.textAppearanceListItemSecondary;
- global::devolutions_crypto.Resource.Attribute.textAppearanceListItemSmall = global::xamarin_android.Resource.Attribute.textAppearanceListItemSmall;
- global::devolutions_crypto.Resource.Attribute.textAppearancePopupMenuHeader = global::xamarin_android.Resource.Attribute.textAppearancePopupMenuHeader;
- global::devolutions_crypto.Resource.Attribute.textAppearanceSearchResultSubtitle = global::xamarin_android.Resource.Attribute.textAppearanceSearchResultSubtitle;
- global::devolutions_crypto.Resource.Attribute.textAppearanceSearchResultTitle = global::xamarin_android.Resource.Attribute.textAppearanceSearchResultTitle;
- global::devolutions_crypto.Resource.Attribute.textAppearanceSmallPopupMenu = global::xamarin_android.Resource.Attribute.textAppearanceSmallPopupMenu;
- global::devolutions_crypto.Resource.Attribute.textColorAlertDialogListItem = global::xamarin_android.Resource.Attribute.textColorAlertDialogListItem;
- global::devolutions_crypto.Resource.Attribute.textColorSearchUrl = global::xamarin_android.Resource.Attribute.textColorSearchUrl;
- global::devolutions_crypto.Resource.Attribute.theme = global::xamarin_android.Resource.Attribute.theme;
- global::devolutions_crypto.Resource.Attribute.thickness = global::xamarin_android.Resource.Attribute.thickness;
- global::devolutions_crypto.Resource.Attribute.thumbTextPadding = global::xamarin_android.Resource.Attribute.thumbTextPadding;
- global::devolutions_crypto.Resource.Attribute.thumbTint = global::xamarin_android.Resource.Attribute.thumbTint;
- global::devolutions_crypto.Resource.Attribute.thumbTintMode = global::xamarin_android.Resource.Attribute.thumbTintMode;
- global::devolutions_crypto.Resource.Attribute.tickMark = global::xamarin_android.Resource.Attribute.tickMark;
- global::devolutions_crypto.Resource.Attribute.tickMarkTint = global::xamarin_android.Resource.Attribute.tickMarkTint;
- global::devolutions_crypto.Resource.Attribute.tickMarkTintMode = global::xamarin_android.Resource.Attribute.tickMarkTintMode;
- global::devolutions_crypto.Resource.Attribute.tint = global::xamarin_android.Resource.Attribute.tint;
- global::devolutions_crypto.Resource.Attribute.tintMode = global::xamarin_android.Resource.Attribute.tintMode;
- global::devolutions_crypto.Resource.Attribute.title = global::xamarin_android.Resource.Attribute.title;
- global::devolutions_crypto.Resource.Attribute.titleMargin = global::xamarin_android.Resource.Attribute.titleMargin;
- global::devolutions_crypto.Resource.Attribute.titleMarginBottom = global::xamarin_android.Resource.Attribute.titleMarginBottom;
- global::devolutions_crypto.Resource.Attribute.titleMarginEnd = global::xamarin_android.Resource.Attribute.titleMarginEnd;
- global::devolutions_crypto.Resource.Attribute.titleMargins = global::xamarin_android.Resource.Attribute.titleMargins;
- global::devolutions_crypto.Resource.Attribute.titleMarginStart = global::xamarin_android.Resource.Attribute.titleMarginStart;
- global::devolutions_crypto.Resource.Attribute.titleMarginTop = global::xamarin_android.Resource.Attribute.titleMarginTop;
- global::devolutions_crypto.Resource.Attribute.titleTextAppearance = global::xamarin_android.Resource.Attribute.titleTextAppearance;
- global::devolutions_crypto.Resource.Attribute.titleTextColor = global::xamarin_android.Resource.Attribute.titleTextColor;
- global::devolutions_crypto.Resource.Attribute.titleTextStyle = global::xamarin_android.Resource.Attribute.titleTextStyle;
- global::devolutions_crypto.Resource.Attribute.toolbarNavigationButtonStyle = global::xamarin_android.Resource.Attribute.toolbarNavigationButtonStyle;
- global::devolutions_crypto.Resource.Attribute.toolbarStyle = global::xamarin_android.Resource.Attribute.toolbarStyle;
- global::devolutions_crypto.Resource.Attribute.tooltipForegroundColor = global::xamarin_android.Resource.Attribute.tooltipForegroundColor;
- global::devolutions_crypto.Resource.Attribute.tooltipFrameBackground = global::xamarin_android.Resource.Attribute.tooltipFrameBackground;
- global::devolutions_crypto.Resource.Attribute.tooltipText = global::xamarin_android.Resource.Attribute.tooltipText;
- global::devolutions_crypto.Resource.Attribute.track = global::xamarin_android.Resource.Attribute.track;
- global::devolutions_crypto.Resource.Attribute.trackTint = global::xamarin_android.Resource.Attribute.trackTint;
- global::devolutions_crypto.Resource.Attribute.trackTintMode = global::xamarin_android.Resource.Attribute.trackTintMode;
- global::devolutions_crypto.Resource.Attribute.ttcIndex = global::xamarin_android.Resource.Attribute.ttcIndex;
- global::devolutions_crypto.Resource.Attribute.viewInflaterClass = global::xamarin_android.Resource.Attribute.viewInflaterClass;
- global::devolutions_crypto.Resource.Attribute.voiceIcon = global::xamarin_android.Resource.Attribute.voiceIcon;
- global::devolutions_crypto.Resource.Attribute.windowActionBar = global::xamarin_android.Resource.Attribute.windowActionBar;
- global::devolutions_crypto.Resource.Attribute.windowActionBarOverlay = global::xamarin_android.Resource.Attribute.windowActionBarOverlay;
- global::devolutions_crypto.Resource.Attribute.windowActionModeOverlay = global::xamarin_android.Resource.Attribute.windowActionModeOverlay;
- global::devolutions_crypto.Resource.Attribute.windowFixedHeightMajor = global::xamarin_android.Resource.Attribute.windowFixedHeightMajor;
- global::devolutions_crypto.Resource.Attribute.windowFixedHeightMinor = global::xamarin_android.Resource.Attribute.windowFixedHeightMinor;
- global::devolutions_crypto.Resource.Attribute.windowFixedWidthMajor = global::xamarin_android.Resource.Attribute.windowFixedWidthMajor;
- global::devolutions_crypto.Resource.Attribute.windowFixedWidthMinor = global::xamarin_android.Resource.Attribute.windowFixedWidthMinor;
- global::devolutions_crypto.Resource.Attribute.windowMinWidthMajor = global::xamarin_android.Resource.Attribute.windowMinWidthMajor;
- global::devolutions_crypto.Resource.Attribute.windowMinWidthMinor = global::xamarin_android.Resource.Attribute.windowMinWidthMinor;
- global::devolutions_crypto.Resource.Attribute.windowNoTitle = global::xamarin_android.Resource.Attribute.windowNoTitle;
- global::devolutions_crypto.Resource.Boolean.abc_action_bar_embed_tabs = global::xamarin_android.Resource.Boolean.abc_action_bar_embed_tabs;
- global::devolutions_crypto.Resource.Boolean.abc_allow_stacked_button_bar = global::xamarin_android.Resource.Boolean.abc_allow_stacked_button_bar;
- global::devolutions_crypto.Resource.Boolean.abc_config_actionMenuItemAllCaps = global::xamarin_android.Resource.Boolean.abc_config_actionMenuItemAllCaps;
- global::devolutions_crypto.Resource.Color.abc_background_cache_hint_selector_material_dark = global::xamarin_android.Resource.Color.abc_background_cache_hint_selector_material_dark;
- global::devolutions_crypto.Resource.Color.abc_background_cache_hint_selector_material_light = global::xamarin_android.Resource.Color.abc_background_cache_hint_selector_material_light;
- global::devolutions_crypto.Resource.Color.abc_btn_colored_borderless_text_material = global::xamarin_android.Resource.Color.abc_btn_colored_borderless_text_material;
- global::devolutions_crypto.Resource.Color.abc_btn_colored_text_material = global::xamarin_android.Resource.Color.abc_btn_colored_text_material;
- global::devolutions_crypto.Resource.Color.abc_color_highlight_material = global::xamarin_android.Resource.Color.abc_color_highlight_material;
- global::devolutions_crypto.Resource.Color.abc_hint_foreground_material_dark = global::xamarin_android.Resource.Color.abc_hint_foreground_material_dark;
- global::devolutions_crypto.Resource.Color.abc_hint_foreground_material_light = global::xamarin_android.Resource.Color.abc_hint_foreground_material_light;
- global::devolutions_crypto.Resource.Color.abc_input_method_navigation_guard = global::xamarin_android.Resource.Color.abc_input_method_navigation_guard;
- global::devolutions_crypto.Resource.Color.abc_primary_text_disable_only_material_dark = global::xamarin_android.Resource.Color.abc_primary_text_disable_only_material_dark;
- global::devolutions_crypto.Resource.Color.abc_primary_text_disable_only_material_light = global::xamarin_android.Resource.Color.abc_primary_text_disable_only_material_light;
- global::devolutions_crypto.Resource.Color.abc_primary_text_material_dark = global::xamarin_android.Resource.Color.abc_primary_text_material_dark;
- global::devolutions_crypto.Resource.Color.abc_primary_text_material_light = global::xamarin_android.Resource.Color.abc_primary_text_material_light;
- global::devolutions_crypto.Resource.Color.abc_search_url_text = global::xamarin_android.Resource.Color.abc_search_url_text;
- global::devolutions_crypto.Resource.Color.abc_search_url_text_normal = global::xamarin_android.Resource.Color.abc_search_url_text_normal;
- global::devolutions_crypto.Resource.Color.abc_search_url_text_pressed = global::xamarin_android.Resource.Color.abc_search_url_text_pressed;
- global::devolutions_crypto.Resource.Color.abc_search_url_text_selected = global::xamarin_android.Resource.Color.abc_search_url_text_selected;
- global::devolutions_crypto.Resource.Color.abc_secondary_text_material_dark = global::xamarin_android.Resource.Color.abc_secondary_text_material_dark;
- global::devolutions_crypto.Resource.Color.abc_secondary_text_material_light = global::xamarin_android.Resource.Color.abc_secondary_text_material_light;
- global::devolutions_crypto.Resource.Color.abc_tint_btn_checkable = global::xamarin_android.Resource.Color.abc_tint_btn_checkable;
- global::devolutions_crypto.Resource.Color.abc_tint_default = global::xamarin_android.Resource.Color.abc_tint_default;
- global::devolutions_crypto.Resource.Color.abc_tint_edittext = global::xamarin_android.Resource.Color.abc_tint_edittext;
- global::devolutions_crypto.Resource.Color.abc_tint_seek_thumb = global::xamarin_android.Resource.Color.abc_tint_seek_thumb;
- global::devolutions_crypto.Resource.Color.abc_tint_spinner = global::xamarin_android.Resource.Color.abc_tint_spinner;
- global::devolutions_crypto.Resource.Color.abc_tint_switch_track = global::xamarin_android.Resource.Color.abc_tint_switch_track;
- global::devolutions_crypto.Resource.Color.accent_material_dark = global::xamarin_android.Resource.Color.accent_material_dark;
- global::devolutions_crypto.Resource.Color.accent_material_light = global::xamarin_android.Resource.Color.accent_material_light;
- global::devolutions_crypto.Resource.Color.background_floating_material_dark = global::xamarin_android.Resource.Color.background_floating_material_dark;
- global::devolutions_crypto.Resource.Color.background_floating_material_light = global::xamarin_android.Resource.Color.background_floating_material_light;
- global::devolutions_crypto.Resource.Color.background_material_dark = global::xamarin_android.Resource.Color.background_material_dark;
- global::devolutions_crypto.Resource.Color.background_material_light = global::xamarin_android.Resource.Color.background_material_light;
- global::devolutions_crypto.Resource.Color.bright_foreground_disabled_material_dark = global::xamarin_android.Resource.Color.bright_foreground_disabled_material_dark;
- global::devolutions_crypto.Resource.Color.bright_foreground_disabled_material_light = global::xamarin_android.Resource.Color.bright_foreground_disabled_material_light;
- global::devolutions_crypto.Resource.Color.bright_foreground_inverse_material_dark = global::xamarin_android.Resource.Color.bright_foreground_inverse_material_dark;
- global::devolutions_crypto.Resource.Color.bright_foreground_inverse_material_light = global::xamarin_android.Resource.Color.bright_foreground_inverse_material_light;
- global::devolutions_crypto.Resource.Color.bright_foreground_material_dark = global::xamarin_android.Resource.Color.bright_foreground_material_dark;
- global::devolutions_crypto.Resource.Color.bright_foreground_material_light = global::xamarin_android.Resource.Color.bright_foreground_material_light;
- global::devolutions_crypto.Resource.Color.button_material_dark = global::xamarin_android.Resource.Color.button_material_dark;
- global::devolutions_crypto.Resource.Color.button_material_light = global::xamarin_android.Resource.Color.button_material_light;
- global::devolutions_crypto.Resource.Color.dim_foreground_disabled_material_dark = global::xamarin_android.Resource.Color.dim_foreground_disabled_material_dark;
- global::devolutions_crypto.Resource.Color.dim_foreground_disabled_material_light = global::xamarin_android.Resource.Color.dim_foreground_disabled_material_light;
- global::devolutions_crypto.Resource.Color.dim_foreground_material_dark = global::xamarin_android.Resource.Color.dim_foreground_material_dark;
- global::devolutions_crypto.Resource.Color.dim_foreground_material_light = global::xamarin_android.Resource.Color.dim_foreground_material_light;
- global::devolutions_crypto.Resource.Color.error_color_material_dark = global::xamarin_android.Resource.Color.error_color_material_dark;
- global::devolutions_crypto.Resource.Color.error_color_material_light = global::xamarin_android.Resource.Color.error_color_material_light;
- global::devolutions_crypto.Resource.Color.foreground_material_dark = global::xamarin_android.Resource.Color.foreground_material_dark;
- global::devolutions_crypto.Resource.Color.foreground_material_light = global::xamarin_android.Resource.Color.foreground_material_light;
- global::devolutions_crypto.Resource.Color.highlighted_text_material_dark = global::xamarin_android.Resource.Color.highlighted_text_material_dark;
- global::devolutions_crypto.Resource.Color.highlighted_text_material_light = global::xamarin_android.Resource.Color.highlighted_text_material_light;
- global::devolutions_crypto.Resource.Color.material_blue_grey_800 = global::xamarin_android.Resource.Color.material_blue_grey_800;
- global::devolutions_crypto.Resource.Color.material_blue_grey_900 = global::xamarin_android.Resource.Color.material_blue_grey_900;
- global::devolutions_crypto.Resource.Color.material_blue_grey_950 = global::xamarin_android.Resource.Color.material_blue_grey_950;
- global::devolutions_crypto.Resource.Color.material_deep_teal_200 = global::xamarin_android.Resource.Color.material_deep_teal_200;
- global::devolutions_crypto.Resource.Color.material_deep_teal_500 = global::xamarin_android.Resource.Color.material_deep_teal_500;
- global::devolutions_crypto.Resource.Color.material_grey_100 = global::xamarin_android.Resource.Color.material_grey_100;
- global::devolutions_crypto.Resource.Color.material_grey_300 = global::xamarin_android.Resource.Color.material_grey_300;
- global::devolutions_crypto.Resource.Color.material_grey_50 = global::xamarin_android.Resource.Color.material_grey_50;
- global::devolutions_crypto.Resource.Color.material_grey_600 = global::xamarin_android.Resource.Color.material_grey_600;
- global::devolutions_crypto.Resource.Color.material_grey_800 = global::xamarin_android.Resource.Color.material_grey_800;
- global::devolutions_crypto.Resource.Color.material_grey_850 = global::xamarin_android.Resource.Color.material_grey_850;
- global::devolutions_crypto.Resource.Color.material_grey_900 = global::xamarin_android.Resource.Color.material_grey_900;
- global::devolutions_crypto.Resource.Color.notification_action_color_filter = global::xamarin_android.Resource.Color.notification_action_color_filter;
- global::devolutions_crypto.Resource.Color.notification_icon_bg_color = global::xamarin_android.Resource.Color.notification_icon_bg_color;
- global::devolutions_crypto.Resource.Color.primary_dark_material_dark = global::xamarin_android.Resource.Color.primary_dark_material_dark;
- global::devolutions_crypto.Resource.Color.primary_dark_material_light = global::xamarin_android.Resource.Color.primary_dark_material_light;
- global::devolutions_crypto.Resource.Color.primary_material_dark = global::xamarin_android.Resource.Color.primary_material_dark;
- global::devolutions_crypto.Resource.Color.primary_material_light = global::xamarin_android.Resource.Color.primary_material_light;
- global::devolutions_crypto.Resource.Color.primary_text_default_material_dark = global::xamarin_android.Resource.Color.primary_text_default_material_dark;
- global::devolutions_crypto.Resource.Color.primary_text_default_material_light = global::xamarin_android.Resource.Color.primary_text_default_material_light;
- global::devolutions_crypto.Resource.Color.primary_text_disabled_material_dark = global::xamarin_android.Resource.Color.primary_text_disabled_material_dark;
- global::devolutions_crypto.Resource.Color.primary_text_disabled_material_light = global::xamarin_android.Resource.Color.primary_text_disabled_material_light;
- global::devolutions_crypto.Resource.Color.ripple_material_dark = global::xamarin_android.Resource.Color.ripple_material_dark;
- global::devolutions_crypto.Resource.Color.ripple_material_light = global::xamarin_android.Resource.Color.ripple_material_light;
- global::devolutions_crypto.Resource.Color.secondary_text_default_material_dark = global::xamarin_android.Resource.Color.secondary_text_default_material_dark;
- global::devolutions_crypto.Resource.Color.secondary_text_default_material_light = global::xamarin_android.Resource.Color.secondary_text_default_material_light;
- global::devolutions_crypto.Resource.Color.secondary_text_disabled_material_dark = global::xamarin_android.Resource.Color.secondary_text_disabled_material_dark;
- global::devolutions_crypto.Resource.Color.secondary_text_disabled_material_light = global::xamarin_android.Resource.Color.secondary_text_disabled_material_light;
- global::devolutions_crypto.Resource.Color.switch_thumb_disabled_material_dark = global::xamarin_android.Resource.Color.switch_thumb_disabled_material_dark;
- global::devolutions_crypto.Resource.Color.switch_thumb_disabled_material_light = global::xamarin_android.Resource.Color.switch_thumb_disabled_material_light;
- global::devolutions_crypto.Resource.Color.switch_thumb_material_dark = global::xamarin_android.Resource.Color.switch_thumb_material_dark;
- global::devolutions_crypto.Resource.Color.switch_thumb_material_light = global::xamarin_android.Resource.Color.switch_thumb_material_light;
- global::devolutions_crypto.Resource.Color.switch_thumb_normal_material_dark = global::xamarin_android.Resource.Color.switch_thumb_normal_material_dark;
- global::devolutions_crypto.Resource.Color.switch_thumb_normal_material_light = global::xamarin_android.Resource.Color.switch_thumb_normal_material_light;
- global::devolutions_crypto.Resource.Color.tooltip_background_dark = global::xamarin_android.Resource.Color.tooltip_background_dark;
- global::devolutions_crypto.Resource.Color.tooltip_background_light = global::xamarin_android.Resource.Color.tooltip_background_light;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_content_inset_material = global::xamarin_android.Resource.Dimension.abc_action_bar_content_inset_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_content_inset_with_nav = global::xamarin_android.Resource.Dimension.abc_action_bar_content_inset_with_nav;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_default_height_material = global::xamarin_android.Resource.Dimension.abc_action_bar_default_height_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_default_padding_end_material = global::xamarin_android.Resource.Dimension.abc_action_bar_default_padding_end_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_default_padding_start_material = global::xamarin_android.Resource.Dimension.abc_action_bar_default_padding_start_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_elevation_material = global::xamarin_android.Resource.Dimension.abc_action_bar_elevation_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_icon_vertical_padding_material = global::xamarin_android.Resource.Dimension.abc_action_bar_icon_vertical_padding_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_overflow_padding_end_material = global::xamarin_android.Resource.Dimension.abc_action_bar_overflow_padding_end_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_overflow_padding_start_material = global::xamarin_android.Resource.Dimension.abc_action_bar_overflow_padding_start_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_stacked_max_height = global::xamarin_android.Resource.Dimension.abc_action_bar_stacked_max_height;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_stacked_tab_max_width = global::xamarin_android.Resource.Dimension.abc_action_bar_stacked_tab_max_width;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_subtitle_bottom_margin_material = global::xamarin_android.Resource.Dimension.abc_action_bar_subtitle_bottom_margin_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_bar_subtitle_top_margin_material = global::xamarin_android.Resource.Dimension.abc_action_bar_subtitle_top_margin_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_button_min_height_material = global::xamarin_android.Resource.Dimension.abc_action_button_min_height_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_button_min_width_material = global::xamarin_android.Resource.Dimension.abc_action_button_min_width_material;
- global::devolutions_crypto.Resource.Dimension.abc_action_button_min_width_overflow_material = global::xamarin_android.Resource.Dimension.abc_action_button_min_width_overflow_material;
- global::devolutions_crypto.Resource.Dimension.abc_alert_dialog_button_bar_height = global::xamarin_android.Resource.Dimension.abc_alert_dialog_button_bar_height;
- global::devolutions_crypto.Resource.Dimension.abc_alert_dialog_button_dimen = global::xamarin_android.Resource.Dimension.abc_alert_dialog_button_dimen;
- global::devolutions_crypto.Resource.Dimension.abc_button_inset_horizontal_material = global::xamarin_android.Resource.Dimension.abc_button_inset_horizontal_material;
- global::devolutions_crypto.Resource.Dimension.abc_button_inset_vertical_material = global::xamarin_android.Resource.Dimension.abc_button_inset_vertical_material;
- global::devolutions_crypto.Resource.Dimension.abc_button_padding_horizontal_material = global::xamarin_android.Resource.Dimension.abc_button_padding_horizontal_material;
- global::devolutions_crypto.Resource.Dimension.abc_button_padding_vertical_material = global::xamarin_android.Resource.Dimension.abc_button_padding_vertical_material;
- global::devolutions_crypto.Resource.Dimension.abc_cascading_menus_min_smallest_width = global::xamarin_android.Resource.Dimension.abc_cascading_menus_min_smallest_width;
- global::devolutions_crypto.Resource.Dimension.abc_config_prefDialogWidth = global::xamarin_android.Resource.Dimension.abc_config_prefDialogWidth;
- global::devolutions_crypto.Resource.Dimension.abc_control_corner_material = global::xamarin_android.Resource.Dimension.abc_control_corner_material;
- global::devolutions_crypto.Resource.Dimension.abc_control_inset_material = global::xamarin_android.Resource.Dimension.abc_control_inset_material;
- global::devolutions_crypto.Resource.Dimension.abc_control_padding_material = global::xamarin_android.Resource.Dimension.abc_control_padding_material;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_corner_radius_material = global::xamarin_android.Resource.Dimension.abc_dialog_corner_radius_material;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_fixed_height_major = global::xamarin_android.Resource.Dimension.abc_dialog_fixed_height_major;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_fixed_height_minor = global::xamarin_android.Resource.Dimension.abc_dialog_fixed_height_minor;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_fixed_width_major = global::xamarin_android.Resource.Dimension.abc_dialog_fixed_width_major;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_fixed_width_minor = global::xamarin_android.Resource.Dimension.abc_dialog_fixed_width_minor;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_list_padding_bottom_no_buttons = global::xamarin_android.Resource.Dimension.abc_dialog_list_padding_bottom_no_buttons;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_list_padding_top_no_title = global::xamarin_android.Resource.Dimension.abc_dialog_list_padding_top_no_title;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_min_width_major = global::xamarin_android.Resource.Dimension.abc_dialog_min_width_major;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_min_width_minor = global::xamarin_android.Resource.Dimension.abc_dialog_min_width_minor;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_padding_material = global::xamarin_android.Resource.Dimension.abc_dialog_padding_material;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_padding_top_material = global::xamarin_android.Resource.Dimension.abc_dialog_padding_top_material;
- global::devolutions_crypto.Resource.Dimension.abc_dialog_title_divider_material = global::xamarin_android.Resource.Dimension.abc_dialog_title_divider_material;
- global::devolutions_crypto.Resource.Dimension.abc_disabled_alpha_material_dark = global::xamarin_android.Resource.Dimension.abc_disabled_alpha_material_dark;
- global::devolutions_crypto.Resource.Dimension.abc_disabled_alpha_material_light = global::xamarin_android.Resource.Dimension.abc_disabled_alpha_material_light;
- global::devolutions_crypto.Resource.Dimension.abc_dropdownitem_icon_width = global::xamarin_android.Resource.Dimension.abc_dropdownitem_icon_width;
- global::devolutions_crypto.Resource.Dimension.abc_dropdownitem_text_padding_left = global::xamarin_android.Resource.Dimension.abc_dropdownitem_text_padding_left;
- global::devolutions_crypto.Resource.Dimension.abc_dropdownitem_text_padding_right = global::xamarin_android.Resource.Dimension.abc_dropdownitem_text_padding_right;
- global::devolutions_crypto.Resource.Dimension.abc_edit_text_inset_bottom_material = global::xamarin_android.Resource.Dimension.abc_edit_text_inset_bottom_material;
- global::devolutions_crypto.Resource.Dimension.abc_edit_text_inset_horizontal_material = global::xamarin_android.Resource.Dimension.abc_edit_text_inset_horizontal_material;
- global::devolutions_crypto.Resource.Dimension.abc_edit_text_inset_top_material = global::xamarin_android.Resource.Dimension.abc_edit_text_inset_top_material;
- global::devolutions_crypto.Resource.Dimension.abc_floating_window_z = global::xamarin_android.Resource.Dimension.abc_floating_window_z;
- global::devolutions_crypto.Resource.Dimension.abc_list_item_padding_horizontal_material = global::xamarin_android.Resource.Dimension.abc_list_item_padding_horizontal_material;
- global::devolutions_crypto.Resource.Dimension.abc_panel_menu_list_width = global::xamarin_android.Resource.Dimension.abc_panel_menu_list_width;
- global::devolutions_crypto.Resource.Dimension.abc_progress_bar_height_material = global::xamarin_android.Resource.Dimension.abc_progress_bar_height_material;
- global::devolutions_crypto.Resource.Dimension.abc_search_view_preferred_height = global::xamarin_android.Resource.Dimension.abc_search_view_preferred_height;
- global::devolutions_crypto.Resource.Dimension.abc_search_view_preferred_width = global::xamarin_android.Resource.Dimension.abc_search_view_preferred_width;
- global::devolutions_crypto.Resource.Dimension.abc_seekbar_track_background_height_material = global::xamarin_android.Resource.Dimension.abc_seekbar_track_background_height_material;
- global::devolutions_crypto.Resource.Dimension.abc_seekbar_track_progress_height_material = global::xamarin_android.Resource.Dimension.abc_seekbar_track_progress_height_material;
- global::devolutions_crypto.Resource.Dimension.abc_select_dialog_padding_start_material = global::xamarin_android.Resource.Dimension.abc_select_dialog_padding_start_material;
- global::devolutions_crypto.Resource.Dimension.abc_switch_padding = global::xamarin_android.Resource.Dimension.abc_switch_padding;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_body_1_material = global::xamarin_android.Resource.Dimension.abc_text_size_body_1_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_body_2_material = global::xamarin_android.Resource.Dimension.abc_text_size_body_2_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_button_material = global::xamarin_android.Resource.Dimension.abc_text_size_button_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_caption_material = global::xamarin_android.Resource.Dimension.abc_text_size_caption_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_display_1_material = global::xamarin_android.Resource.Dimension.abc_text_size_display_1_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_display_2_material = global::xamarin_android.Resource.Dimension.abc_text_size_display_2_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_display_3_material = global::xamarin_android.Resource.Dimension.abc_text_size_display_3_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_display_4_material = global::xamarin_android.Resource.Dimension.abc_text_size_display_4_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_headline_material = global::xamarin_android.Resource.Dimension.abc_text_size_headline_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_large_material = global::xamarin_android.Resource.Dimension.abc_text_size_large_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_medium_material = global::xamarin_android.Resource.Dimension.abc_text_size_medium_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_menu_header_material = global::xamarin_android.Resource.Dimension.abc_text_size_menu_header_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_menu_material = global::xamarin_android.Resource.Dimension.abc_text_size_menu_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_small_material = global::xamarin_android.Resource.Dimension.abc_text_size_small_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_subhead_material = global::xamarin_android.Resource.Dimension.abc_text_size_subhead_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_subtitle_material_toolbar = global::xamarin_android.Resource.Dimension.abc_text_size_subtitle_material_toolbar;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_title_material = global::xamarin_android.Resource.Dimension.abc_text_size_title_material;
- global::devolutions_crypto.Resource.Dimension.abc_text_size_title_material_toolbar = global::xamarin_android.Resource.Dimension.abc_text_size_title_material_toolbar;
- global::devolutions_crypto.Resource.Dimension.compat_button_inset_horizontal_material = global::xamarin_android.Resource.Dimension.compat_button_inset_horizontal_material;
- global::devolutions_crypto.Resource.Dimension.compat_button_inset_vertical_material = global::xamarin_android.Resource.Dimension.compat_button_inset_vertical_material;
- global::devolutions_crypto.Resource.Dimension.compat_button_padding_horizontal_material = global::xamarin_android.Resource.Dimension.compat_button_padding_horizontal_material;
- global::devolutions_crypto.Resource.Dimension.compat_button_padding_vertical_material = global::xamarin_android.Resource.Dimension.compat_button_padding_vertical_material;
- global::devolutions_crypto.Resource.Dimension.compat_control_corner_material = global::xamarin_android.Resource.Dimension.compat_control_corner_material;
- global::devolutions_crypto.Resource.Dimension.compat_notification_large_icon_max_height = global::xamarin_android.Resource.Dimension.compat_notification_large_icon_max_height;
- global::devolutions_crypto.Resource.Dimension.compat_notification_large_icon_max_width = global::xamarin_android.Resource.Dimension.compat_notification_large_icon_max_width;
- global::devolutions_crypto.Resource.Dimension.disabled_alpha_material_dark = global::xamarin_android.Resource.Dimension.disabled_alpha_material_dark;
- global::devolutions_crypto.Resource.Dimension.disabled_alpha_material_light = global::xamarin_android.Resource.Dimension.disabled_alpha_material_light;
- global::devolutions_crypto.Resource.Dimension.highlight_alpha_material_colored = global::xamarin_android.Resource.Dimension.highlight_alpha_material_colored;
- global::devolutions_crypto.Resource.Dimension.highlight_alpha_material_dark = global::xamarin_android.Resource.Dimension.highlight_alpha_material_dark;
- global::devolutions_crypto.Resource.Dimension.highlight_alpha_material_light = global::xamarin_android.Resource.Dimension.highlight_alpha_material_light;
- global::devolutions_crypto.Resource.Dimension.hint_alpha_material_dark = global::xamarin_android.Resource.Dimension.hint_alpha_material_dark;
- global::devolutions_crypto.Resource.Dimension.hint_alpha_material_light = global::xamarin_android.Resource.Dimension.hint_alpha_material_light;
- global::devolutions_crypto.Resource.Dimension.hint_pressed_alpha_material_dark = global::xamarin_android.Resource.Dimension.hint_pressed_alpha_material_dark;
- global::devolutions_crypto.Resource.Dimension.hint_pressed_alpha_material_light = global::xamarin_android.Resource.Dimension.hint_pressed_alpha_material_light;
- global::devolutions_crypto.Resource.Dimension.notification_action_icon_size = global::xamarin_android.Resource.Dimension.notification_action_icon_size;
- global::devolutions_crypto.Resource.Dimension.notification_action_text_size = global::xamarin_android.Resource.Dimension.notification_action_text_size;
- global::devolutions_crypto.Resource.Dimension.notification_big_circle_margin = global::xamarin_android.Resource.Dimension.notification_big_circle_margin;
- global::devolutions_crypto.Resource.Dimension.notification_content_margin_start = global::xamarin_android.Resource.Dimension.notification_content_margin_start;
- global::devolutions_crypto.Resource.Dimension.notification_large_icon_height = global::xamarin_android.Resource.Dimension.notification_large_icon_height;
- global::devolutions_crypto.Resource.Dimension.notification_large_icon_width = global::xamarin_android.Resource.Dimension.notification_large_icon_width;
- global::devolutions_crypto.Resource.Dimension.notification_main_column_padding_top = global::xamarin_android.Resource.Dimension.notification_main_column_padding_top;
- global::devolutions_crypto.Resource.Dimension.notification_media_narrow_margin = global::xamarin_android.Resource.Dimension.notification_media_narrow_margin;
- global::devolutions_crypto.Resource.Dimension.notification_right_icon_size = global::xamarin_android.Resource.Dimension.notification_right_icon_size;
- global::devolutions_crypto.Resource.Dimension.notification_right_side_padding_top = global::xamarin_android.Resource.Dimension.notification_right_side_padding_top;
- global::devolutions_crypto.Resource.Dimension.notification_small_icon_background_padding = global::xamarin_android.Resource.Dimension.notification_small_icon_background_padding;
- global::devolutions_crypto.Resource.Dimension.notification_small_icon_size_as_large = global::xamarin_android.Resource.Dimension.notification_small_icon_size_as_large;
- global::devolutions_crypto.Resource.Dimension.notification_subtext_size = global::xamarin_android.Resource.Dimension.notification_subtext_size;
- global::devolutions_crypto.Resource.Dimension.notification_top_pad = global::xamarin_android.Resource.Dimension.notification_top_pad;
- global::devolutions_crypto.Resource.Dimension.notification_top_pad_large_text = global::xamarin_android.Resource.Dimension.notification_top_pad_large_text;
- global::devolutions_crypto.Resource.Dimension.tooltip_corner_radius = global::xamarin_android.Resource.Dimension.tooltip_corner_radius;
- global::devolutions_crypto.Resource.Dimension.tooltip_horizontal_padding = global::xamarin_android.Resource.Dimension.tooltip_horizontal_padding;
- global::devolutions_crypto.Resource.Dimension.tooltip_margin = global::xamarin_android.Resource.Dimension.tooltip_margin;
- global::devolutions_crypto.Resource.Dimension.tooltip_precise_anchor_extra_offset = global::xamarin_android.Resource.Dimension.tooltip_precise_anchor_extra_offset;
- global::devolutions_crypto.Resource.Dimension.tooltip_precise_anchor_threshold = global::xamarin_android.Resource.Dimension.tooltip_precise_anchor_threshold;
- global::devolutions_crypto.Resource.Dimension.tooltip_vertical_padding = global::xamarin_android.Resource.Dimension.tooltip_vertical_padding;
- global::devolutions_crypto.Resource.Dimension.tooltip_y_offset_non_touch = global::xamarin_android.Resource.Dimension.tooltip_y_offset_non_touch;
- global::devolutions_crypto.Resource.Dimension.tooltip_y_offset_touch = global::xamarin_android.Resource.Dimension.tooltip_y_offset_touch;
- global::devolutions_crypto.Resource.Drawable.abc_ab_share_pack_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_ab_share_pack_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_action_bar_item_background_material = global::xamarin_android.Resource.Drawable.abc_action_bar_item_background_material;
- global::devolutions_crypto.Resource.Drawable.abc_btn_borderless_material = global::xamarin_android.Resource.Drawable.abc_btn_borderless_material;
- global::devolutions_crypto.Resource.Drawable.abc_btn_check_material = global::xamarin_android.Resource.Drawable.abc_btn_check_material;
- global::devolutions_crypto.Resource.Drawable.abc_btn_check_to_on_mtrl_000 = global::xamarin_android.Resource.Drawable.abc_btn_check_to_on_mtrl_000;
- global::devolutions_crypto.Resource.Drawable.abc_btn_check_to_on_mtrl_015 = global::xamarin_android.Resource.Drawable.abc_btn_check_to_on_mtrl_015;
- global::devolutions_crypto.Resource.Drawable.abc_btn_colored_material = global::xamarin_android.Resource.Drawable.abc_btn_colored_material;
- global::devolutions_crypto.Resource.Drawable.abc_btn_default_mtrl_shape = global::xamarin_android.Resource.Drawable.abc_btn_default_mtrl_shape;
- global::devolutions_crypto.Resource.Drawable.abc_btn_radio_material = global::xamarin_android.Resource.Drawable.abc_btn_radio_material;
- global::devolutions_crypto.Resource.Drawable.abc_btn_radio_to_on_mtrl_000 = global::xamarin_android.Resource.Drawable.abc_btn_radio_to_on_mtrl_000;
- global::devolutions_crypto.Resource.Drawable.abc_btn_radio_to_on_mtrl_015 = global::xamarin_android.Resource.Drawable.abc_btn_radio_to_on_mtrl_015;
- global::devolutions_crypto.Resource.Drawable.abc_btn_switch_to_on_mtrl_00001 = global::xamarin_android.Resource.Drawable.abc_btn_switch_to_on_mtrl_00001;
- global::devolutions_crypto.Resource.Drawable.abc_btn_switch_to_on_mtrl_00012 = global::xamarin_android.Resource.Drawable.abc_btn_switch_to_on_mtrl_00012;
- global::devolutions_crypto.Resource.Drawable.abc_cab_background_internal_bg = global::xamarin_android.Resource.Drawable.abc_cab_background_internal_bg;
- global::devolutions_crypto.Resource.Drawable.abc_cab_background_top_material = global::xamarin_android.Resource.Drawable.abc_cab_background_top_material;
- global::devolutions_crypto.Resource.Drawable.abc_cab_background_top_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_cab_background_top_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_control_background_material = global::xamarin_android.Resource.Drawable.abc_control_background_material;
- global::devolutions_crypto.Resource.Drawable.abc_dialog_material_background = global::xamarin_android.Resource.Drawable.abc_dialog_material_background;
- global::devolutions_crypto.Resource.Drawable.abc_edit_text_material = global::xamarin_android.Resource.Drawable.abc_edit_text_material;
- global::devolutions_crypto.Resource.Drawable.abc_ic_ab_back_material = global::xamarin_android.Resource.Drawable.abc_ic_ab_back_material;
- global::devolutions_crypto.Resource.Drawable.abc_ic_arrow_drop_right_black_24dp = global::xamarin_android.Resource.Drawable.abc_ic_arrow_drop_right_black_24dp;
- global::devolutions_crypto.Resource.Drawable.abc_ic_clear_material = global::xamarin_android.Resource.Drawable.abc_ic_clear_material;
- global::devolutions_crypto.Resource.Drawable.abc_ic_commit_search_api_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_ic_commit_search_api_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_ic_go_search_api_material = global::xamarin_android.Resource.Drawable.abc_ic_go_search_api_material;
- global::devolutions_crypto.Resource.Drawable.abc_ic_menu_copy_mtrl_am_alpha = global::xamarin_android.Resource.Drawable.abc_ic_menu_copy_mtrl_am_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_ic_menu_cut_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_ic_menu_cut_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_ic_menu_overflow_material = global::xamarin_android.Resource.Drawable.abc_ic_menu_overflow_material;
- global::devolutions_crypto.Resource.Drawable.abc_ic_menu_paste_mtrl_am_alpha = global::xamarin_android.Resource.Drawable.abc_ic_menu_paste_mtrl_am_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_ic_menu_selectall_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_ic_menu_selectall_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_ic_menu_share_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_ic_menu_share_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_ic_search_api_material = global::xamarin_android.Resource.Drawable.abc_ic_search_api_material;
- global::devolutions_crypto.Resource.Drawable.abc_ic_star_black_16dp = global::xamarin_android.Resource.Drawable.abc_ic_star_black_16dp;
- global::devolutions_crypto.Resource.Drawable.abc_ic_star_black_36dp = global::xamarin_android.Resource.Drawable.abc_ic_star_black_36dp;
- global::devolutions_crypto.Resource.Drawable.abc_ic_star_black_48dp = global::xamarin_android.Resource.Drawable.abc_ic_star_black_48dp;
- global::devolutions_crypto.Resource.Drawable.abc_ic_star_half_black_16dp = global::xamarin_android.Resource.Drawable.abc_ic_star_half_black_16dp;
- global::devolutions_crypto.Resource.Drawable.abc_ic_star_half_black_36dp = global::xamarin_android.Resource.Drawable.abc_ic_star_half_black_36dp;
- global::devolutions_crypto.Resource.Drawable.abc_ic_star_half_black_48dp = global::xamarin_android.Resource.Drawable.abc_ic_star_half_black_48dp;
- global::devolutions_crypto.Resource.Drawable.abc_ic_voice_search_api_material = global::xamarin_android.Resource.Drawable.abc_ic_voice_search_api_material;
- global::devolutions_crypto.Resource.Drawable.abc_item_background_holo_dark = global::xamarin_android.Resource.Drawable.abc_item_background_holo_dark;
- global::devolutions_crypto.Resource.Drawable.abc_item_background_holo_light = global::xamarin_android.Resource.Drawable.abc_item_background_holo_light;
- global::devolutions_crypto.Resource.Drawable.abc_list_divider_material = global::xamarin_android.Resource.Drawable.abc_list_divider_material;
- global::devolutions_crypto.Resource.Drawable.abc_list_divider_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_list_divider_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_list_focused_holo = global::xamarin_android.Resource.Drawable.abc_list_focused_holo;
- global::devolutions_crypto.Resource.Drawable.abc_list_longpressed_holo = global::xamarin_android.Resource.Drawable.abc_list_longpressed_holo;
- global::devolutions_crypto.Resource.Drawable.abc_list_pressed_holo_dark = global::xamarin_android.Resource.Drawable.abc_list_pressed_holo_dark;
- global::devolutions_crypto.Resource.Drawable.abc_list_pressed_holo_light = global::xamarin_android.Resource.Drawable.abc_list_pressed_holo_light;
- global::devolutions_crypto.Resource.Drawable.abc_list_selector_background_transition_holo_dark = global::xamarin_android.Resource.Drawable.abc_list_selector_background_transition_holo_dark;
- global::devolutions_crypto.Resource.Drawable.abc_list_selector_background_transition_holo_light = global::xamarin_android.Resource.Drawable.abc_list_selector_background_transition_holo_light;
- global::devolutions_crypto.Resource.Drawable.abc_list_selector_disabled_holo_dark = global::xamarin_android.Resource.Drawable.abc_list_selector_disabled_holo_dark;
- global::devolutions_crypto.Resource.Drawable.abc_list_selector_disabled_holo_light = global::xamarin_android.Resource.Drawable.abc_list_selector_disabled_holo_light;
- global::devolutions_crypto.Resource.Drawable.abc_list_selector_holo_dark = global::xamarin_android.Resource.Drawable.abc_list_selector_holo_dark;
- global::devolutions_crypto.Resource.Drawable.abc_list_selector_holo_light = global::xamarin_android.Resource.Drawable.abc_list_selector_holo_light;
- global::devolutions_crypto.Resource.Drawable.abc_menu_hardkey_panel_mtrl_mult = global::xamarin_android.Resource.Drawable.abc_menu_hardkey_panel_mtrl_mult;
- global::devolutions_crypto.Resource.Drawable.abc_popup_background_mtrl_mult = global::xamarin_android.Resource.Drawable.abc_popup_background_mtrl_mult;
- global::devolutions_crypto.Resource.Drawable.abc_ratingbar_indicator_material = global::xamarin_android.Resource.Drawable.abc_ratingbar_indicator_material;
- global::devolutions_crypto.Resource.Drawable.abc_ratingbar_material = global::xamarin_android.Resource.Drawable.abc_ratingbar_material;
- global::devolutions_crypto.Resource.Drawable.abc_ratingbar_small_material = global::xamarin_android.Resource.Drawable.abc_ratingbar_small_material;
- global::devolutions_crypto.Resource.Drawable.abc_scrubber_control_off_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_scrubber_control_off_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_000 = global::xamarin_android.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_000;
- global::devolutions_crypto.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_005 = global::xamarin_android.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_005;
- global::devolutions_crypto.Resource.Drawable.abc_scrubber_primary_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_scrubber_primary_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_scrubber_track_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_scrubber_track_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_seekbar_thumb_material = global::xamarin_android.Resource.Drawable.abc_seekbar_thumb_material;
- global::devolutions_crypto.Resource.Drawable.abc_seekbar_tick_mark_material = global::xamarin_android.Resource.Drawable.abc_seekbar_tick_mark_material;
- global::devolutions_crypto.Resource.Drawable.abc_seekbar_track_material = global::xamarin_android.Resource.Drawable.abc_seekbar_track_material;
- global::devolutions_crypto.Resource.Drawable.abc_spinner_mtrl_am_alpha = global::xamarin_android.Resource.Drawable.abc_spinner_mtrl_am_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_spinner_textfield_background_material = global::xamarin_android.Resource.Drawable.abc_spinner_textfield_background_material;
- global::devolutions_crypto.Resource.Drawable.abc_switch_thumb_material = global::xamarin_android.Resource.Drawable.abc_switch_thumb_material;
- global::devolutions_crypto.Resource.Drawable.abc_switch_track_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_switch_track_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_tab_indicator_material = global::xamarin_android.Resource.Drawable.abc_tab_indicator_material;
- global::devolutions_crypto.Resource.Drawable.abc_tab_indicator_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_tab_indicator_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_textfield_activated_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_textfield_activated_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_textfield_default_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_textfield_default_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_textfield_search_activated_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_textfield_search_activated_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_textfield_search_default_mtrl_alpha = global::xamarin_android.Resource.Drawable.abc_textfield_search_default_mtrl_alpha;
- global::devolutions_crypto.Resource.Drawable.abc_textfield_search_material = global::xamarin_android.Resource.Drawable.abc_textfield_search_material;
- global::devolutions_crypto.Resource.Drawable.abc_text_cursor_material = global::xamarin_android.Resource.Drawable.abc_text_cursor_material;
- global::devolutions_crypto.Resource.Drawable.abc_text_select_handle_left_mtrl_dark = global::xamarin_android.Resource.Drawable.abc_text_select_handle_left_mtrl_dark;
- global::devolutions_crypto.Resource.Drawable.abc_text_select_handle_left_mtrl_light = global::xamarin_android.Resource.Drawable.abc_text_select_handle_left_mtrl_light;
- global::devolutions_crypto.Resource.Drawable.abc_text_select_handle_middle_mtrl_dark = global::xamarin_android.Resource.Drawable.abc_text_select_handle_middle_mtrl_dark;
- global::devolutions_crypto.Resource.Drawable.abc_text_select_handle_middle_mtrl_light = global::xamarin_android.Resource.Drawable.abc_text_select_handle_middle_mtrl_light;
- global::devolutions_crypto.Resource.Drawable.abc_text_select_handle_right_mtrl_dark = global::xamarin_android.Resource.Drawable.abc_text_select_handle_right_mtrl_dark;
- global::devolutions_crypto.Resource.Drawable.abc_text_select_handle_right_mtrl_light = global::xamarin_android.Resource.Drawable.abc_text_select_handle_right_mtrl_light;
- global::devolutions_crypto.Resource.Drawable.abc_vector_test = global::xamarin_android.Resource.Drawable.abc_vector_test;
- global::devolutions_crypto.Resource.Drawable.notification_action_background = global::xamarin_android.Resource.Drawable.notification_action_background;
- global::devolutions_crypto.Resource.Drawable.notification_bg = global::xamarin_android.Resource.Drawable.notification_bg;
- global::devolutions_crypto.Resource.Drawable.notification_bg_low = global::xamarin_android.Resource.Drawable.notification_bg_low;
- global::devolutions_crypto.Resource.Drawable.notification_bg_low_normal = global::xamarin_android.Resource.Drawable.notification_bg_low_normal;
- global::devolutions_crypto.Resource.Drawable.notification_bg_low_pressed = global::xamarin_android.Resource.Drawable.notification_bg_low_pressed;
- global::devolutions_crypto.Resource.Drawable.notification_bg_normal = global::xamarin_android.Resource.Drawable.notification_bg_normal;
- global::devolutions_crypto.Resource.Drawable.notification_bg_normal_pressed = global::xamarin_android.Resource.Drawable.notification_bg_normal_pressed;
- global::devolutions_crypto.Resource.Drawable.notification_icon_background = global::xamarin_android.Resource.Drawable.notification_icon_background;
- global::devolutions_crypto.Resource.Drawable.notification_template_icon_bg = global::xamarin_android.Resource.Drawable.notification_template_icon_bg;
- global::devolutions_crypto.Resource.Drawable.notification_template_icon_low_bg = global::xamarin_android.Resource.Drawable.notification_template_icon_low_bg;
- global::devolutions_crypto.Resource.Drawable.notification_tile_bg = global::xamarin_android.Resource.Drawable.notification_tile_bg;
- global::devolutions_crypto.Resource.Drawable.notify_panel_notification_icon_bg = global::xamarin_android.Resource.Drawable.notify_panel_notification_icon_bg;
- global::devolutions_crypto.Resource.Drawable.tooltip_frame_dark = global::xamarin_android.Resource.Drawable.tooltip_frame_dark;
- global::devolutions_crypto.Resource.Drawable.tooltip_frame_light = global::xamarin_android.Resource.Drawable.tooltip_frame_light;
- global::devolutions_crypto.Resource.Id.actions = global::xamarin_android.Resource.Id.actions;
- global::devolutions_crypto.Resource.Id.action_bar = global::xamarin_android.Resource.Id.action_bar;
- global::devolutions_crypto.Resource.Id.action_bar_activity_content = global::xamarin_android.Resource.Id.action_bar_activity_content;
- global::devolutions_crypto.Resource.Id.action_bar_container = global::xamarin_android.Resource.Id.action_bar_container;
- global::devolutions_crypto.Resource.Id.action_bar_root = global::xamarin_android.Resource.Id.action_bar_root;
- global::devolutions_crypto.Resource.Id.action_bar_spinner = global::xamarin_android.Resource.Id.action_bar_spinner;
- global::devolutions_crypto.Resource.Id.action_bar_subtitle = global::xamarin_android.Resource.Id.action_bar_subtitle;
- global::devolutions_crypto.Resource.Id.action_bar_title = global::xamarin_android.Resource.Id.action_bar_title;
- global::devolutions_crypto.Resource.Id.action_container = global::xamarin_android.Resource.Id.action_container;
- global::devolutions_crypto.Resource.Id.action_context_bar = global::xamarin_android.Resource.Id.action_context_bar;
- global::devolutions_crypto.Resource.Id.action_divider = global::xamarin_android.Resource.Id.action_divider;
- global::devolutions_crypto.Resource.Id.action_image = global::xamarin_android.Resource.Id.action_image;
- global::devolutions_crypto.Resource.Id.action_menu_divider = global::xamarin_android.Resource.Id.action_menu_divider;
- global::devolutions_crypto.Resource.Id.action_menu_presenter = global::xamarin_android.Resource.Id.action_menu_presenter;
- global::devolutions_crypto.Resource.Id.action_mode_bar = global::xamarin_android.Resource.Id.action_mode_bar;
- global::devolutions_crypto.Resource.Id.action_mode_bar_stub = global::xamarin_android.Resource.Id.action_mode_bar_stub;
- global::devolutions_crypto.Resource.Id.action_mode_close_button = global::xamarin_android.Resource.Id.action_mode_close_button;
- global::devolutions_crypto.Resource.Id.action_text = global::xamarin_android.Resource.Id.action_text;
- global::devolutions_crypto.Resource.Id.activity_chooser_view_content = global::xamarin_android.Resource.Id.activity_chooser_view_content;
- global::devolutions_crypto.Resource.Id.add = global::xamarin_android.Resource.Id.add;
- global::devolutions_crypto.Resource.Id.alertTitle = global::xamarin_android.Resource.Id.alertTitle;
- global::devolutions_crypto.Resource.Id.all = global::xamarin_android.Resource.Id.all;
- global::devolutions_crypto.Resource.Id.ALT = global::xamarin_android.Resource.Id.ALT;
- global::devolutions_crypto.Resource.Id.always = global::xamarin_android.Resource.Id.always;
- global::devolutions_crypto.Resource.Id.async = global::xamarin_android.Resource.Id.async;
- global::devolutions_crypto.Resource.Id.beginning = global::xamarin_android.Resource.Id.beginning;
- global::devolutions_crypto.Resource.Id.blocking = global::xamarin_android.Resource.Id.blocking;
- global::devolutions_crypto.Resource.Id.bottom = global::xamarin_android.Resource.Id.bottom;
- global::devolutions_crypto.Resource.Id.buttonPanel = global::xamarin_android.Resource.Id.buttonPanel;
- global::devolutions_crypto.Resource.Id.center = global::xamarin_android.Resource.Id.center;
- global::devolutions_crypto.Resource.Id.center_horizontal = global::xamarin_android.Resource.Id.center_horizontal;
- global::devolutions_crypto.Resource.Id.center_vertical = global::xamarin_android.Resource.Id.center_vertical;
- global::devolutions_crypto.Resource.Id.checkbox = global::xamarin_android.Resource.Id.checkbox;
- global::devolutions_crypto.Resource.Id.chronometer = global::xamarin_android.Resource.Id.chronometer;
- global::devolutions_crypto.Resource.Id.clip_horizontal = global::xamarin_android.Resource.Id.clip_horizontal;
- global::devolutions_crypto.Resource.Id.clip_vertical = global::xamarin_android.Resource.Id.clip_vertical;
- global::devolutions_crypto.Resource.Id.collapseActionView = global::xamarin_android.Resource.Id.collapseActionView;
- global::devolutions_crypto.Resource.Id.content = global::xamarin_android.Resource.Id.content;
- global::devolutions_crypto.Resource.Id.contentPanel = global::xamarin_android.Resource.Id.contentPanel;
- global::devolutions_crypto.Resource.Id.CTRL = global::xamarin_android.Resource.Id.CTRL;
- global::devolutions_crypto.Resource.Id.custom = global::xamarin_android.Resource.Id.custom;
- global::devolutions_crypto.Resource.Id.customPanel = global::xamarin_android.Resource.Id.customPanel;
- global::devolutions_crypto.Resource.Id.decor_content_parent = global::xamarin_android.Resource.Id.decor_content_parent;
- global::devolutions_crypto.Resource.Id.default_activity_button = global::xamarin_android.Resource.Id.default_activity_button;
- global::devolutions_crypto.Resource.Id.disableHome = global::xamarin_android.Resource.Id.disableHome;
- global::devolutions_crypto.Resource.Id.edit_query = global::xamarin_android.Resource.Id.edit_query;
- global::devolutions_crypto.Resource.Id.end = global::xamarin_android.Resource.Id.end;
- global::devolutions_crypto.Resource.Id.expanded_menu = global::xamarin_android.Resource.Id.expanded_menu;
- global::devolutions_crypto.Resource.Id.expand_activities_button = global::xamarin_android.Resource.Id.expand_activities_button;
- global::devolutions_crypto.Resource.Id.fill = global::xamarin_android.Resource.Id.fill;
- global::devolutions_crypto.Resource.Id.fill_horizontal = global::xamarin_android.Resource.Id.fill_horizontal;
- global::devolutions_crypto.Resource.Id.fill_vertical = global::xamarin_android.Resource.Id.fill_vertical;
- global::devolutions_crypto.Resource.Id.forever = global::xamarin_android.Resource.Id.forever;
- global::devolutions_crypto.Resource.Id.FUNCTION = global::xamarin_android.Resource.Id.FUNCTION;
- global::devolutions_crypto.Resource.Id.group_divider = global::xamarin_android.Resource.Id.group_divider;
- global::devolutions_crypto.Resource.Id.home = global::xamarin_android.Resource.Id.home;
- global::devolutions_crypto.Resource.Id.homeAsUp = global::xamarin_android.Resource.Id.homeAsUp;
- global::devolutions_crypto.Resource.Id.icon = global::xamarin_android.Resource.Id.icon;
- global::devolutions_crypto.Resource.Id.icon_group = global::xamarin_android.Resource.Id.icon_group;
- global::devolutions_crypto.Resource.Id.ifRoom = global::xamarin_android.Resource.Id.ifRoom;
- global::devolutions_crypto.Resource.Id.image = global::xamarin_android.Resource.Id.image;
- global::devolutions_crypto.Resource.Id.info = global::xamarin_android.Resource.Id.info;
- global::devolutions_crypto.Resource.Id.italic = global::xamarin_android.Resource.Id.italic;
- global::devolutions_crypto.Resource.Id.left = global::xamarin_android.Resource.Id.left;
- global::devolutions_crypto.Resource.Id.line1 = global::xamarin_android.Resource.Id.line1;
- global::devolutions_crypto.Resource.Id.line3 = global::xamarin_android.Resource.Id.line3;
- global::devolutions_crypto.Resource.Id.listMode = global::xamarin_android.Resource.Id.listMode;
- global::devolutions_crypto.Resource.Id.list_item = global::xamarin_android.Resource.Id.list_item;
- global::devolutions_crypto.Resource.Id.message = global::xamarin_android.Resource.Id.message;
- global::devolutions_crypto.Resource.Id.META = global::xamarin_android.Resource.Id.META;
- global::devolutions_crypto.Resource.Id.middle = global::xamarin_android.Resource.Id.middle;
- global::devolutions_crypto.Resource.Id.multiply = global::xamarin_android.Resource.Id.multiply;
- global::devolutions_crypto.Resource.Id.never = global::xamarin_android.Resource.Id.never;
- global::devolutions_crypto.Resource.Id.none = global::xamarin_android.Resource.Id.none;
- global::devolutions_crypto.Resource.Id.normal = global::xamarin_android.Resource.Id.normal;
- global::devolutions_crypto.Resource.Id.notification_background = global::xamarin_android.Resource.Id.notification_background;
- global::devolutions_crypto.Resource.Id.notification_main_column = global::xamarin_android.Resource.Id.notification_main_column;
- global::devolutions_crypto.Resource.Id.notification_main_column_container = global::xamarin_android.Resource.Id.notification_main_column_container;
- global::devolutions_crypto.Resource.Id.parentPanel = global::xamarin_android.Resource.Id.parentPanel;
- global::devolutions_crypto.Resource.Id.progress_circular = global::xamarin_android.Resource.Id.progress_circular;
- global::devolutions_crypto.Resource.Id.progress_horizontal = global::xamarin_android.Resource.Id.progress_horizontal;
- global::devolutions_crypto.Resource.Id.radio = global::xamarin_android.Resource.Id.radio;
- global::devolutions_crypto.Resource.Id.right = global::xamarin_android.Resource.Id.right;
- global::devolutions_crypto.Resource.Id.right_icon = global::xamarin_android.Resource.Id.right_icon;
- global::devolutions_crypto.Resource.Id.right_side = global::xamarin_android.Resource.Id.right_side;
- global::devolutions_crypto.Resource.Id.screen = global::xamarin_android.Resource.Id.screen;
- global::devolutions_crypto.Resource.Id.scrollIndicatorDown = global::xamarin_android.Resource.Id.scrollIndicatorDown;
- global::devolutions_crypto.Resource.Id.scrollIndicatorUp = global::xamarin_android.Resource.Id.scrollIndicatorUp;
- global::devolutions_crypto.Resource.Id.scrollView = global::xamarin_android.Resource.Id.scrollView;
- global::devolutions_crypto.Resource.Id.search_badge = global::xamarin_android.Resource.Id.search_badge;
- global::devolutions_crypto.Resource.Id.search_bar = global::xamarin_android.Resource.Id.search_bar;
- global::devolutions_crypto.Resource.Id.search_button = global::xamarin_android.Resource.Id.search_button;
- global::devolutions_crypto.Resource.Id.search_close_btn = global::xamarin_android.Resource.Id.search_close_btn;
- global::devolutions_crypto.Resource.Id.search_edit_frame = global::xamarin_android.Resource.Id.search_edit_frame;
- global::devolutions_crypto.Resource.Id.search_go_btn = global::xamarin_android.Resource.Id.search_go_btn;
- global::devolutions_crypto.Resource.Id.search_mag_icon = global::xamarin_android.Resource.Id.search_mag_icon;
- global::devolutions_crypto.Resource.Id.search_plate = global::xamarin_android.Resource.Id.search_plate;
- global::devolutions_crypto.Resource.Id.search_src_text = global::xamarin_android.Resource.Id.search_src_text;
- global::devolutions_crypto.Resource.Id.search_voice_btn = global::xamarin_android.Resource.Id.search_voice_btn;
- global::devolutions_crypto.Resource.Id.select_dialog_listview = global::xamarin_android.Resource.Id.select_dialog_listview;
- global::devolutions_crypto.Resource.Id.SHIFT = global::xamarin_android.Resource.Id.SHIFT;
- global::devolutions_crypto.Resource.Id.shortcut = global::xamarin_android.Resource.Id.shortcut;
- global::devolutions_crypto.Resource.Id.showCustom = global::xamarin_android.Resource.Id.showCustom;
- global::devolutions_crypto.Resource.Id.showHome = global::xamarin_android.Resource.Id.showHome;
- global::devolutions_crypto.Resource.Id.showTitle = global::xamarin_android.Resource.Id.showTitle;
- global::devolutions_crypto.Resource.Id.spacer = global::xamarin_android.Resource.Id.spacer;
- global::devolutions_crypto.Resource.Id.split_action_bar = global::xamarin_android.Resource.Id.split_action_bar;
- global::devolutions_crypto.Resource.Id.src_atop = global::xamarin_android.Resource.Id.src_atop;
- global::devolutions_crypto.Resource.Id.src_in = global::xamarin_android.Resource.Id.src_in;
- global::devolutions_crypto.Resource.Id.src_over = global::xamarin_android.Resource.Id.src_over;
- global::devolutions_crypto.Resource.Id.start = global::xamarin_android.Resource.Id.start;
- global::devolutions_crypto.Resource.Id.submenuarrow = global::xamarin_android.Resource.Id.submenuarrow;
- global::devolutions_crypto.Resource.Id.submit_area = global::xamarin_android.Resource.Id.submit_area;
- global::devolutions_crypto.Resource.Id.SYM = global::xamarin_android.Resource.Id.SYM;
- global::devolutions_crypto.Resource.Id.tabMode = global::xamarin_android.Resource.Id.tabMode;
- global::devolutions_crypto.Resource.Id.tag_transition_group = global::xamarin_android.Resource.Id.tag_transition_group;
- global::devolutions_crypto.Resource.Id.tag_unhandled_key_event_manager = global::xamarin_android.Resource.Id.tag_unhandled_key_event_manager;
- global::devolutions_crypto.Resource.Id.tag_unhandled_key_listeners = global::xamarin_android.Resource.Id.tag_unhandled_key_listeners;
- global::devolutions_crypto.Resource.Id.text = global::xamarin_android.Resource.Id.text;
- global::devolutions_crypto.Resource.Id.text2 = global::xamarin_android.Resource.Id.text2;
- global::devolutions_crypto.Resource.Id.textSpacerNoButtons = global::xamarin_android.Resource.Id.textSpacerNoButtons;
- global::devolutions_crypto.Resource.Id.textSpacerNoTitle = global::xamarin_android.Resource.Id.textSpacerNoTitle;
- global::devolutions_crypto.Resource.Id.time = global::xamarin_android.Resource.Id.time;
- global::devolutions_crypto.Resource.Id.title = global::xamarin_android.Resource.Id.title;
- global::devolutions_crypto.Resource.Id.titleDividerNoCustom = global::xamarin_android.Resource.Id.titleDividerNoCustom;
- global::devolutions_crypto.Resource.Id.title_template = global::xamarin_android.Resource.Id.title_template;
- global::devolutions_crypto.Resource.Id.top = global::xamarin_android.Resource.Id.top;
- global::devolutions_crypto.Resource.Id.topPanel = global::xamarin_android.Resource.Id.topPanel;
- global::devolutions_crypto.Resource.Id.uniform = global::xamarin_android.Resource.Id.uniform;
- global::devolutions_crypto.Resource.Id.up = global::xamarin_android.Resource.Id.up;
- global::devolutions_crypto.Resource.Id.useLogo = global::xamarin_android.Resource.Id.useLogo;
- global::devolutions_crypto.Resource.Id.withText = global::xamarin_android.Resource.Id.withText;
- global::devolutions_crypto.Resource.Id.wrap_content = global::xamarin_android.Resource.Id.wrap_content;
- global::devolutions_crypto.Resource.Integer.abc_config_activityDefaultDur = global::xamarin_android.Resource.Integer.abc_config_activityDefaultDur;
- global::devolutions_crypto.Resource.Integer.abc_config_activityShortDur = global::xamarin_android.Resource.Integer.abc_config_activityShortDur;
- global::devolutions_crypto.Resource.Integer.cancel_button_image_alpha = global::xamarin_android.Resource.Integer.cancel_button_image_alpha;
- global::devolutions_crypto.Resource.Integer.config_tooltipAnimTime = global::xamarin_android.Resource.Integer.config_tooltipAnimTime;
- global::devolutions_crypto.Resource.Integer.status_bar_notification_info_maxnum = global::xamarin_android.Resource.Integer.status_bar_notification_info_maxnum;
- global::devolutions_crypto.Resource.Layout.abc_action_bar_title_item = global::xamarin_android.Resource.Layout.abc_action_bar_title_item;
- global::devolutions_crypto.Resource.Layout.abc_action_bar_up_container = global::xamarin_android.Resource.Layout.abc_action_bar_up_container;
- global::devolutions_crypto.Resource.Layout.abc_action_menu_item_layout = global::xamarin_android.Resource.Layout.abc_action_menu_item_layout;
- global::devolutions_crypto.Resource.Layout.abc_action_menu_layout = global::xamarin_android.Resource.Layout.abc_action_menu_layout;
- global::devolutions_crypto.Resource.Layout.abc_action_mode_bar = global::xamarin_android.Resource.Layout.abc_action_mode_bar;
- global::devolutions_crypto.Resource.Layout.abc_action_mode_close_item_material = global::xamarin_android.Resource.Layout.abc_action_mode_close_item_material;
- global::devolutions_crypto.Resource.Layout.abc_activity_chooser_view = global::xamarin_android.Resource.Layout.abc_activity_chooser_view;
- global::devolutions_crypto.Resource.Layout.abc_activity_chooser_view_list_item = global::xamarin_android.Resource.Layout.abc_activity_chooser_view_list_item;
- global::devolutions_crypto.Resource.Layout.abc_alert_dialog_button_bar_material = global::xamarin_android.Resource.Layout.abc_alert_dialog_button_bar_material;
- global::devolutions_crypto.Resource.Layout.abc_alert_dialog_material = global::xamarin_android.Resource.Layout.abc_alert_dialog_material;
- global::devolutions_crypto.Resource.Layout.abc_alert_dialog_title_material = global::xamarin_android.Resource.Layout.abc_alert_dialog_title_material;
- global::devolutions_crypto.Resource.Layout.abc_cascading_menu_item_layout = global::xamarin_android.Resource.Layout.abc_cascading_menu_item_layout;
- global::devolutions_crypto.Resource.Layout.abc_dialog_title_material = global::xamarin_android.Resource.Layout.abc_dialog_title_material;
- global::devolutions_crypto.Resource.Layout.abc_expanded_menu_layout = global::xamarin_android.Resource.Layout.abc_expanded_menu_layout;
- global::devolutions_crypto.Resource.Layout.abc_list_menu_item_checkbox = global::xamarin_android.Resource.Layout.abc_list_menu_item_checkbox;
- global::devolutions_crypto.Resource.Layout.abc_list_menu_item_icon = global::xamarin_android.Resource.Layout.abc_list_menu_item_icon;
- global::devolutions_crypto.Resource.Layout.abc_list_menu_item_layout = global::xamarin_android.Resource.Layout.abc_list_menu_item_layout;
- global::devolutions_crypto.Resource.Layout.abc_list_menu_item_radio = global::xamarin_android.Resource.Layout.abc_list_menu_item_radio;
- global::devolutions_crypto.Resource.Layout.abc_popup_menu_header_item_layout = global::xamarin_android.Resource.Layout.abc_popup_menu_header_item_layout;
- global::devolutions_crypto.Resource.Layout.abc_popup_menu_item_layout = global::xamarin_android.Resource.Layout.abc_popup_menu_item_layout;
- global::devolutions_crypto.Resource.Layout.abc_screen_content_include = global::xamarin_android.Resource.Layout.abc_screen_content_include;
- global::devolutions_crypto.Resource.Layout.abc_screen_simple = global::xamarin_android.Resource.Layout.abc_screen_simple;
- global::devolutions_crypto.Resource.Layout.abc_screen_simple_overlay_action_mode = global::xamarin_android.Resource.Layout.abc_screen_simple_overlay_action_mode;
- global::devolutions_crypto.Resource.Layout.abc_screen_toolbar = global::xamarin_android.Resource.Layout.abc_screen_toolbar;
- global::devolutions_crypto.Resource.Layout.abc_search_dropdown_item_icons_2line = global::xamarin_android.Resource.Layout.abc_search_dropdown_item_icons_2line;
- global::devolutions_crypto.Resource.Layout.abc_search_view = global::xamarin_android.Resource.Layout.abc_search_view;
- global::devolutions_crypto.Resource.Layout.abc_select_dialog_material = global::xamarin_android.Resource.Layout.abc_select_dialog_material;
- global::devolutions_crypto.Resource.Layout.abc_tooltip = global::xamarin_android.Resource.Layout.abc_tooltip;
- global::devolutions_crypto.Resource.Layout.notification_action = global::xamarin_android.Resource.Layout.notification_action;
- global::devolutions_crypto.Resource.Layout.notification_action_tombstone = global::xamarin_android.Resource.Layout.notification_action_tombstone;
- global::devolutions_crypto.Resource.Layout.notification_template_custom_big = global::xamarin_android.Resource.Layout.notification_template_custom_big;
- global::devolutions_crypto.Resource.Layout.notification_template_icon_group = global::xamarin_android.Resource.Layout.notification_template_icon_group;
- global::devolutions_crypto.Resource.Layout.notification_template_part_chronometer = global::xamarin_android.Resource.Layout.notification_template_part_chronometer;
- global::devolutions_crypto.Resource.Layout.notification_template_part_time = global::xamarin_android.Resource.Layout.notification_template_part_time;
- global::devolutions_crypto.Resource.Layout.select_dialog_item_material = global::xamarin_android.Resource.Layout.select_dialog_item_material;
- global::devolutions_crypto.Resource.Layout.select_dialog_multichoice_material = global::xamarin_android.Resource.Layout.select_dialog_multichoice_material;
- global::devolutions_crypto.Resource.Layout.select_dialog_singlechoice_material = global::xamarin_android.Resource.Layout.select_dialog_singlechoice_material;
- global::devolutions_crypto.Resource.Layout.support_simple_spinner_dropdown_item = global::xamarin_android.Resource.Layout.support_simple_spinner_dropdown_item;
- global::devolutions_crypto.Resource.String.abc_action_bar_home_description = global::xamarin_android.Resource.String.abc_action_bar_home_description;
- global::devolutions_crypto.Resource.String.abc_action_bar_up_description = global::xamarin_android.Resource.String.abc_action_bar_up_description;
- global::devolutions_crypto.Resource.String.abc_action_menu_overflow_description = global::xamarin_android.Resource.String.abc_action_menu_overflow_description;
- global::devolutions_crypto.Resource.String.abc_action_mode_done = global::xamarin_android.Resource.String.abc_action_mode_done;
- global::devolutions_crypto.Resource.String.abc_activitychooserview_choose_application = global::xamarin_android.Resource.String.abc_activitychooserview_choose_application;
- global::devolutions_crypto.Resource.String.abc_activity_chooser_view_see_all = global::xamarin_android.Resource.String.abc_activity_chooser_view_see_all;
- global::devolutions_crypto.Resource.String.abc_capital_off = global::xamarin_android.Resource.String.abc_capital_off;
- global::devolutions_crypto.Resource.String.abc_capital_on = global::xamarin_android.Resource.String.abc_capital_on;
- global::devolutions_crypto.Resource.String.abc_font_family_body_1_material = global::xamarin_android.Resource.String.abc_font_family_body_1_material;
- global::devolutions_crypto.Resource.String.abc_font_family_body_2_material = global::xamarin_android.Resource.String.abc_font_family_body_2_material;
- global::devolutions_crypto.Resource.String.abc_font_family_button_material = global::xamarin_android.Resource.String.abc_font_family_button_material;
- global::devolutions_crypto.Resource.String.abc_font_family_caption_material = global::xamarin_android.Resource.String.abc_font_family_caption_material;
- global::devolutions_crypto.Resource.String.abc_font_family_display_1_material = global::xamarin_android.Resource.String.abc_font_family_display_1_material;
- global::devolutions_crypto.Resource.String.abc_font_family_display_2_material = global::xamarin_android.Resource.String.abc_font_family_display_2_material;
- global::devolutions_crypto.Resource.String.abc_font_family_display_3_material = global::xamarin_android.Resource.String.abc_font_family_display_3_material;
- global::devolutions_crypto.Resource.String.abc_font_family_display_4_material = global::xamarin_android.Resource.String.abc_font_family_display_4_material;
- global::devolutions_crypto.Resource.String.abc_font_family_headline_material = global::xamarin_android.Resource.String.abc_font_family_headline_material;
- global::devolutions_crypto.Resource.String.abc_font_family_menu_material = global::xamarin_android.Resource.String.abc_font_family_menu_material;
- global::devolutions_crypto.Resource.String.abc_font_family_subhead_material = global::xamarin_android.Resource.String.abc_font_family_subhead_material;
- global::devolutions_crypto.Resource.String.abc_font_family_title_material = global::xamarin_android.Resource.String.abc_font_family_title_material;
- global::devolutions_crypto.Resource.String.abc_menu_alt_shortcut_label = global::xamarin_android.Resource.String.abc_menu_alt_shortcut_label;
- global::devolutions_crypto.Resource.String.abc_menu_ctrl_shortcut_label = global::xamarin_android.Resource.String.abc_menu_ctrl_shortcut_label;
- global::devolutions_crypto.Resource.String.abc_menu_delete_shortcut_label = global::xamarin_android.Resource.String.abc_menu_delete_shortcut_label;
- global::devolutions_crypto.Resource.String.abc_menu_enter_shortcut_label = global::xamarin_android.Resource.String.abc_menu_enter_shortcut_label;
- global::devolutions_crypto.Resource.String.abc_menu_function_shortcut_label = global::xamarin_android.Resource.String.abc_menu_function_shortcut_label;
- global::devolutions_crypto.Resource.String.abc_menu_meta_shortcut_label = global::xamarin_android.Resource.String.abc_menu_meta_shortcut_label;
- global::devolutions_crypto.Resource.String.abc_menu_shift_shortcut_label = global::xamarin_android.Resource.String.abc_menu_shift_shortcut_label;
- global::devolutions_crypto.Resource.String.abc_menu_space_shortcut_label = global::xamarin_android.Resource.String.abc_menu_space_shortcut_label;
- global::devolutions_crypto.Resource.String.abc_menu_sym_shortcut_label = global::xamarin_android.Resource.String.abc_menu_sym_shortcut_label;
- global::devolutions_crypto.Resource.String.abc_prepend_shortcut_label = global::xamarin_android.Resource.String.abc_prepend_shortcut_label;
- global::devolutions_crypto.Resource.String.abc_searchview_description_clear = global::xamarin_android.Resource.String.abc_searchview_description_clear;
- global::devolutions_crypto.Resource.String.abc_searchview_description_query = global::xamarin_android.Resource.String.abc_searchview_description_query;
- global::devolutions_crypto.Resource.String.abc_searchview_description_search = global::xamarin_android.Resource.String.abc_searchview_description_search;
- global::devolutions_crypto.Resource.String.abc_searchview_description_submit = global::xamarin_android.Resource.String.abc_searchview_description_submit;
- global::devolutions_crypto.Resource.String.abc_searchview_description_voice = global::xamarin_android.Resource.String.abc_searchview_description_voice;
- global::devolutions_crypto.Resource.String.abc_search_hint = global::xamarin_android.Resource.String.abc_search_hint;
- global::devolutions_crypto.Resource.String.abc_shareactionprovider_share_with = global::xamarin_android.Resource.String.abc_shareactionprovider_share_with;
- global::devolutions_crypto.Resource.String.abc_shareactionprovider_share_with_application = global::xamarin_android.Resource.String.abc_shareactionprovider_share_with_application;
- global::devolutions_crypto.Resource.String.abc_toolbar_collapse_description = global::xamarin_android.Resource.String.abc_toolbar_collapse_description;
- global::devolutions_crypto.Resource.String.app_name = global::xamarin_android.Resource.String.app_name;
- global::devolutions_crypto.Resource.String.hello = global::xamarin_android.Resource.String.hello;
- global::devolutions_crypto.Resource.String.search_menu_title = global::xamarin_android.Resource.String.search_menu_title;
- global::devolutions_crypto.Resource.String.status_bar_notification_info_overflow = global::xamarin_android.Resource.String.status_bar_notification_info_overflow;
- global::devolutions_crypto.Resource.Style.AlertDialog_AppCompat = global::xamarin_android.Resource.Style.AlertDialog_AppCompat;
- global::devolutions_crypto.Resource.Style.AlertDialog_AppCompat_Light = global::xamarin_android.Resource.Style.AlertDialog_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Animation_AppCompat_Dialog = global::xamarin_android.Resource.Style.Animation_AppCompat_Dialog;
- global::devolutions_crypto.Resource.Style.Animation_AppCompat_DropDownUp = global::xamarin_android.Resource.Style.Animation_AppCompat_DropDownUp;
- global::devolutions_crypto.Resource.Style.Animation_AppCompat_Tooltip = global::xamarin_android.Resource.Style.Animation_AppCompat_Tooltip;
- global::devolutions_crypto.Resource.Style.Base_AlertDialog_AppCompat = global::xamarin_android.Resource.Style.Base_AlertDialog_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_AlertDialog_AppCompat_Light = global::xamarin_android.Resource.Style.Base_AlertDialog_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Base_Animation_AppCompat_Dialog = global::xamarin_android.Resource.Style.Base_Animation_AppCompat_Dialog;
- global::devolutions_crypto.Resource.Style.Base_Animation_AppCompat_DropDownUp = global::xamarin_android.Resource.Style.Base_Animation_AppCompat_DropDownUp;
- global::devolutions_crypto.Resource.Style.Base_Animation_AppCompat_Tooltip = global::xamarin_android.Resource.Style.Base_Animation_AppCompat_Tooltip;
- global::devolutions_crypto.Resource.Style.Base_DialogWindowTitleBackground_AppCompat = global::xamarin_android.Resource.Style.Base_DialogWindowTitleBackground_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_DialogWindowTitle_AppCompat = global::xamarin_android.Resource.Style.Base_DialogWindowTitle_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Body1 = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Body1;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Body2 = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Body2;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Button = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Button;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Caption = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Caption;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Display1 = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Display1;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Display2 = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Display2;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Display3 = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Display3;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Display4 = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Display4;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Headline = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Headline;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Inverse = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Inverse;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Large = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Large;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Large_Inverse = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Large_Inverse;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Medium = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Medium;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Medium_Inverse = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Medium_Inverse;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Menu = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Menu;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_SearchResult = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_SearchResult;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Subtitle = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Subtitle;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Title = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Title;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Small = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Small;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Small_Inverse = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Small_Inverse;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Subhead = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Subhead;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Subhead_Inverse = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Subhead_Inverse;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Title = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Title;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Title_Inverse = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Title_Inverse;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Tooltip = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Tooltip;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Menu;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Title = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Title;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Colored = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Colored;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Inverse = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Inverse;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_DropDownItem = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_DropDownItem;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Header;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Large;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Small;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_Switch = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Switch;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = global::xamarin_android.Resource.Style.Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = global::xamarin_android.Resource.Style.Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = global::xamarin_android.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle;
- global::devolutions_crypto.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Title = global::xamarin_android.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Title;
- global::devolutions_crypto.Resource.Style.Base_ThemeOverlay_AppCompat = global::xamarin_android.Resource.Style.Base_ThemeOverlay_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_ThemeOverlay_AppCompat_ActionBar = global::xamarin_android.Resource.Style.Base_ThemeOverlay_AppCompat_ActionBar;
- global::devolutions_crypto.Resource.Style.Base_ThemeOverlay_AppCompat_Dark = global::xamarin_android.Resource.Style.Base_ThemeOverlay_AppCompat_Dark;
- global::devolutions_crypto.Resource.Style.Base_ThemeOverlay_AppCompat_Dark_ActionBar = global::xamarin_android.Resource.Style.Base_ThemeOverlay_AppCompat_Dark_ActionBar;
- global::devolutions_crypto.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog = global::xamarin_android.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog;
- global::devolutions_crypto.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog_Alert = global::xamarin_android.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog_Alert;
- global::devolutions_crypto.Resource.Style.Base_ThemeOverlay_AppCompat_Light = global::xamarin_android.Resource.Style.Base_ThemeOverlay_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat = global::xamarin_android.Resource.Style.Base_Theme_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_CompactMenu = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_CompactMenu;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_Dialog = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_Dialog;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_DialogWhenLarge = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_DialogWhenLarge;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_Dialog_Alert = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_Dialog_Alert;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_Dialog_FixedSize = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_Dialog_FixedSize;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_Dialog_MinWidth = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_Dialog_MinWidth;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_Light = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_Light_DarkActionBar = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_Light_DarkActionBar;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_Light_Dialog = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_Light_Dialog;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_Light_DialogWhenLarge = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_Light_DialogWhenLarge;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_Light_Dialog_Alert = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_Light_Dialog_Alert;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_Light_Dialog_FixedSize = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_Light_Dialog_FixedSize;
- global::devolutions_crypto.Resource.Style.Base_Theme_AppCompat_Light_Dialog_MinWidth = global::xamarin_android.Resource.Style.Base_Theme_AppCompat_Light_Dialog_MinWidth;
- global::devolutions_crypto.Resource.Style.Base_V21_ThemeOverlay_AppCompat_Dialog = global::xamarin_android.Resource.Style.Base_V21_ThemeOverlay_AppCompat_Dialog;
- global::devolutions_crypto.Resource.Style.Base_V21_Theme_AppCompat = global::xamarin_android.Resource.Style.Base_V21_Theme_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_V21_Theme_AppCompat_Dialog = global::xamarin_android.Resource.Style.Base_V21_Theme_AppCompat_Dialog;
- global::devolutions_crypto.Resource.Style.Base_V21_Theme_AppCompat_Light = global::xamarin_android.Resource.Style.Base_V21_Theme_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Base_V21_Theme_AppCompat_Light_Dialog = global::xamarin_android.Resource.Style.Base_V21_Theme_AppCompat_Light_Dialog;
- global::devolutions_crypto.Resource.Style.Base_V22_Theme_AppCompat = global::xamarin_android.Resource.Style.Base_V22_Theme_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_V22_Theme_AppCompat_Light = global::xamarin_android.Resource.Style.Base_V22_Theme_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Base_V23_Theme_AppCompat = global::xamarin_android.Resource.Style.Base_V23_Theme_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_V23_Theme_AppCompat_Light = global::xamarin_android.Resource.Style.Base_V23_Theme_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Base_V26_Theme_AppCompat = global::xamarin_android.Resource.Style.Base_V26_Theme_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_V26_Theme_AppCompat_Light = global::xamarin_android.Resource.Style.Base_V26_Theme_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Base_V26_Widget_AppCompat_Toolbar = global::xamarin_android.Resource.Style.Base_V26_Widget_AppCompat_Toolbar;
- global::devolutions_crypto.Resource.Style.Base_V28_Theme_AppCompat = global::xamarin_android.Resource.Style.Base_V28_Theme_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_V28_Theme_AppCompat_Light = global::xamarin_android.Resource.Style.Base_V28_Theme_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Base_V7_ThemeOverlay_AppCompat_Dialog = global::xamarin_android.Resource.Style.Base_V7_ThemeOverlay_AppCompat_Dialog;
- global::devolutions_crypto.Resource.Style.Base_V7_Theme_AppCompat = global::xamarin_android.Resource.Style.Base_V7_Theme_AppCompat;
- global::devolutions_crypto.Resource.Style.Base_V7_Theme_AppCompat_Dialog = global::xamarin_android.Resource.Style.Base_V7_Theme_AppCompat_Dialog;
- global::devolutions_crypto.Resource.Style.Base_V7_Theme_AppCompat_Light = global::xamarin_android.Resource.Style.Base_V7_Theme_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Base_V7_Theme_AppCompat_Light_Dialog = global::xamarin_android.Resource.Style.Base_V7_Theme_AppCompat_Light_Dialog;
- global::devolutions_crypto.Resource.Style.Base_V7_Widget_AppCompat_AutoCompleteTextView = global::xamarin_android.Resource.Style.Base_V7_Widget_AppCompat_AutoCompleteTextView;
- global::devolutions_crypto.Resource.Style.Base_V7_Widget_AppCompat_EditText = global::xamarin_android.Resource.Style.Base_V7_Widget_AppCompat_EditText;
- global::devolutions_crypto.Resource.Style.Base_V7_Widget_AppCompat_Toolbar = global::xamarin_android.Resource.Style.Base_V7_Widget_AppCompat_Toolbar;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ActionBar = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ActionBar;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ActionBar_Solid = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ActionBar_Solid;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ActionBar_TabBar = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ActionBar_TabBar;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ActionBar_TabText = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ActionBar_TabText;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ActionBar_TabView = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ActionBar_TabView;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ActionButton = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ActionButton;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ActionButton_CloseMode = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ActionButton_CloseMode;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ActionButton_Overflow = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ActionButton_Overflow;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ActionMode = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ActionMode;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ActivityChooserView = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ActivityChooserView;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_AutoCompleteTextView = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_AutoCompleteTextView;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Button = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Button;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ButtonBar = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ButtonBar;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ButtonBar_AlertDialog = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ButtonBar_AlertDialog;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Button_Borderless = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Button_Borderless;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Button_Borderless_Colored = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Button_Borderless_Colored;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Button_ButtonBar_AlertDialog;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Button_Colored = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Button_Colored;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Button_Small = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Button_Small;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_CompoundButton_CheckBox = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_CompoundButton_CheckBox;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_CompoundButton_RadioButton = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_CompoundButton_RadioButton;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_CompoundButton_Switch = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_CompoundButton_Switch;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle_Common = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle_Common;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_DropDownItem_Spinner = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_DropDownItem_Spinner;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_EditText = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_EditText;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ImageButton = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ImageButton;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Light_ActionBar = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_Solid = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_Solid;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabBar = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabBar;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabView = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabView;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu_Overflow = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu_Overflow;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ListMenuView = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ListMenuView;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ListPopupWindow = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ListPopupWindow;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ListView = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ListView;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ListView_DropDown = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ListView_DropDown;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ListView_Menu = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ListView_Menu;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_PopupMenu = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_PopupMenu;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_PopupMenu_Overflow = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_PopupMenu_Overflow;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_PopupWindow = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_PopupWindow;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ProgressBar = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ProgressBar;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_ProgressBar_Horizontal = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_ProgressBar_Horizontal;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_RatingBar = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_RatingBar;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_RatingBar_Indicator = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_RatingBar_Indicator;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_RatingBar_Small = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_RatingBar_Small;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_SearchView = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_SearchView;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_SearchView_ActionBar = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_SearchView_ActionBar;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_SeekBar = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_SeekBar;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_SeekBar_Discrete = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_SeekBar_Discrete;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Spinner = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Spinner;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Spinner_Underlined = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Spinner_Underlined;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_TextView_SpinnerItem = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_TextView_SpinnerItem;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Toolbar = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Toolbar;
- global::devolutions_crypto.Resource.Style.Base_Widget_AppCompat_Toolbar_Button_Navigation = global::xamarin_android.Resource.Style.Base_Widget_AppCompat_Toolbar_Button_Navigation;
- global::devolutions_crypto.Resource.Style.Platform_AppCompat = global::xamarin_android.Resource.Style.Platform_AppCompat;
- global::devolutions_crypto.Resource.Style.Platform_AppCompat_Light = global::xamarin_android.Resource.Style.Platform_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Platform_ThemeOverlay_AppCompat = global::xamarin_android.Resource.Style.Platform_ThemeOverlay_AppCompat;
- global::devolutions_crypto.Resource.Style.Platform_ThemeOverlay_AppCompat_Dark = global::xamarin_android.Resource.Style.Platform_ThemeOverlay_AppCompat_Dark;
- global::devolutions_crypto.Resource.Style.Platform_ThemeOverlay_AppCompat_Light = global::xamarin_android.Resource.Style.Platform_ThemeOverlay_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Platform_V21_AppCompat = global::xamarin_android.Resource.Style.Platform_V21_AppCompat;
- global::devolutions_crypto.Resource.Style.Platform_V21_AppCompat_Light = global::xamarin_android.Resource.Style.Platform_V21_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Platform_V25_AppCompat = global::xamarin_android.Resource.Style.Platform_V25_AppCompat;
- global::devolutions_crypto.Resource.Style.Platform_V25_AppCompat_Light = global::xamarin_android.Resource.Style.Platform_V25_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Platform_Widget_AppCompat_Spinner = global::xamarin_android.Resource.Style.Platform_Widget_AppCompat_Spinner;
- global::devolutions_crypto.Resource.Style.RtlOverlay_DialogWindowTitle_AppCompat = global::xamarin_android.Resource.Style.RtlOverlay_DialogWindowTitle_AppCompat;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_ActionBar_TitleItem;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_DialogTitle_Icon = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_DialogTitle_Icon;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Text;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Title;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_SearchView_MagIcon = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_SearchView_MagIcon;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Query = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Query;
- global::devolutions_crypto.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Text = global::xamarin_android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Text;
- global::devolutions_crypto.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton = global::xamarin_android.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton;
- global::devolutions_crypto.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = global::xamarin_android.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton_Overflow;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat = global::xamarin_android.Resource.Style.TextAppearance_AppCompat;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Body1 = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Body1;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Body2 = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Body2;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Button = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Button;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Caption = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Caption;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Display1 = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Display1;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Display2 = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Display2;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Display3 = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Display3;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Display4 = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Display4;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Headline = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Headline;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Inverse = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Inverse;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Large = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Large;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Large_Inverse = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Large_Inverse;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Subtitle = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Subtitle;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Title = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Title;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Large;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Small;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Medium = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Medium;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Medium_Inverse = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Medium_Inverse;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Menu = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Menu;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_SearchResult_Subtitle = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_SearchResult_Subtitle;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_SearchResult_Title = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_SearchResult_Title;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Small = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Small;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Small_Inverse = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Small_Inverse;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Subhead = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Subhead;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Subhead_Inverse = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Subhead_Inverse;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Title = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Title;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Title_Inverse = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Title_Inverse;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Tooltip = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Tooltip;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Menu = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Menu;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_Button = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_Button;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_Button_Borderless_Colored = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_Button_Borderless_Colored;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_Button_Colored = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_Button_Colored;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_Button_Inverse = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_Button_Inverse;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_DropDownItem = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_DropDownItem;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Header = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Header;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Large = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Large;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Small = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Small;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_Switch = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_Switch;
- global::devolutions_crypto.Resource.Style.TextAppearance_AppCompat_Widget_TextView_SpinnerItem = global::xamarin_android.Resource.Style.TextAppearance_AppCompat_Widget_TextView_SpinnerItem;
- global::devolutions_crypto.Resource.Style.TextAppearance_Compat_Notification = global::xamarin_android.Resource.Style.TextAppearance_Compat_Notification;
- global::devolutions_crypto.Resource.Style.TextAppearance_Compat_Notification_Info = global::xamarin_android.Resource.Style.TextAppearance_Compat_Notification_Info;
- global::devolutions_crypto.Resource.Style.TextAppearance_Compat_Notification_Line2 = global::xamarin_android.Resource.Style.TextAppearance_Compat_Notification_Line2;
- global::devolutions_crypto.Resource.Style.TextAppearance_Compat_Notification_Time = global::xamarin_android.Resource.Style.TextAppearance_Compat_Notification_Time;
- global::devolutions_crypto.Resource.Style.TextAppearance_Compat_Notification_Title = global::xamarin_android.Resource.Style.TextAppearance_Compat_Notification_Title;
- global::devolutions_crypto.Resource.Style.TextAppearance_Widget_AppCompat_ExpandedMenu_Item = global::xamarin_android.Resource.Style.TextAppearance_Widget_AppCompat_ExpandedMenu_Item;
- global::devolutions_crypto.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Subtitle = global::xamarin_android.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Subtitle;
- global::devolutions_crypto.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Title = global::xamarin_android.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Title;
- global::devolutions_crypto.Resource.Style.ThemeOverlay_AppCompat = global::xamarin_android.Resource.Style.ThemeOverlay_AppCompat;
- global::devolutions_crypto.Resource.Style.ThemeOverlay_AppCompat_ActionBar = global::xamarin_android.Resource.Style.ThemeOverlay_AppCompat_ActionBar;
- global::devolutions_crypto.Resource.Style.ThemeOverlay_AppCompat_Dark = global::xamarin_android.Resource.Style.ThemeOverlay_AppCompat_Dark;
- global::devolutions_crypto.Resource.Style.ThemeOverlay_AppCompat_Dark_ActionBar = global::xamarin_android.Resource.Style.ThemeOverlay_AppCompat_Dark_ActionBar;
- global::devolutions_crypto.Resource.Style.ThemeOverlay_AppCompat_Dialog = global::xamarin_android.Resource.Style.ThemeOverlay_AppCompat_Dialog;
- global::devolutions_crypto.Resource.Style.ThemeOverlay_AppCompat_Dialog_Alert = global::xamarin_android.Resource.Style.ThemeOverlay_AppCompat_Dialog_Alert;
- global::devolutions_crypto.Resource.Style.ThemeOverlay_AppCompat_Light = global::xamarin_android.Resource.Style.ThemeOverlay_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat = global::xamarin_android.Resource.Style.Theme_AppCompat;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_CompactMenu = global::xamarin_android.Resource.Style.Theme_AppCompat_CompactMenu;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_DayNight = global::xamarin_android.Resource.Style.Theme_AppCompat_DayNight;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_DayNight_DarkActionBar = global::xamarin_android.Resource.Style.Theme_AppCompat_DayNight_DarkActionBar;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_DayNight_Dialog = global::xamarin_android.Resource.Style.Theme_AppCompat_DayNight_Dialog;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_DayNight_DialogWhenLarge = global::xamarin_android.Resource.Style.Theme_AppCompat_DayNight_DialogWhenLarge;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_DayNight_Dialog_Alert = global::xamarin_android.Resource.Style.Theme_AppCompat_DayNight_Dialog_Alert;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_DayNight_Dialog_MinWidth = global::xamarin_android.Resource.Style.Theme_AppCompat_DayNight_Dialog_MinWidth;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_DayNight_NoActionBar = global::xamarin_android.Resource.Style.Theme_AppCompat_DayNight_NoActionBar;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_Dialog = global::xamarin_android.Resource.Style.Theme_AppCompat_Dialog;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_DialogWhenLarge = global::xamarin_android.Resource.Style.Theme_AppCompat_DialogWhenLarge;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_Dialog_Alert = global::xamarin_android.Resource.Style.Theme_AppCompat_Dialog_Alert;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_Dialog_MinWidth = global::xamarin_android.Resource.Style.Theme_AppCompat_Dialog_MinWidth;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_Light = global::xamarin_android.Resource.Style.Theme_AppCompat_Light;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_Light_DarkActionBar = global::xamarin_android.Resource.Style.Theme_AppCompat_Light_DarkActionBar;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_Light_Dialog = global::xamarin_android.Resource.Style.Theme_AppCompat_Light_Dialog;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_Light_DialogWhenLarge = global::xamarin_android.Resource.Style.Theme_AppCompat_Light_DialogWhenLarge;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_Light_Dialog_Alert = global::xamarin_android.Resource.Style.Theme_AppCompat_Light_Dialog_Alert;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_Light_Dialog_MinWidth = global::xamarin_android.Resource.Style.Theme_AppCompat_Light_Dialog_MinWidth;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_Light_NoActionBar = global::xamarin_android.Resource.Style.Theme_AppCompat_Light_NoActionBar;
- global::devolutions_crypto.Resource.Style.Theme_AppCompat_NoActionBar = global::xamarin_android.Resource.Style.Theme_AppCompat_NoActionBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ActionBar = global::xamarin_android.Resource.Style.Widget_AppCompat_ActionBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ActionBar_Solid = global::xamarin_android.Resource.Style.Widget_AppCompat_ActionBar_Solid;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ActionBar_TabBar = global::xamarin_android.Resource.Style.Widget_AppCompat_ActionBar_TabBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ActionBar_TabText = global::xamarin_android.Resource.Style.Widget_AppCompat_ActionBar_TabText;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ActionBar_TabView = global::xamarin_android.Resource.Style.Widget_AppCompat_ActionBar_TabView;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ActionButton = global::xamarin_android.Resource.Style.Widget_AppCompat_ActionButton;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ActionButton_CloseMode = global::xamarin_android.Resource.Style.Widget_AppCompat_ActionButton_CloseMode;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ActionButton_Overflow = global::xamarin_android.Resource.Style.Widget_AppCompat_ActionButton_Overflow;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ActionMode = global::xamarin_android.Resource.Style.Widget_AppCompat_ActionMode;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ActivityChooserView = global::xamarin_android.Resource.Style.Widget_AppCompat_ActivityChooserView;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_AutoCompleteTextView = global::xamarin_android.Resource.Style.Widget_AppCompat_AutoCompleteTextView;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Button = global::xamarin_android.Resource.Style.Widget_AppCompat_Button;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ButtonBar = global::xamarin_android.Resource.Style.Widget_AppCompat_ButtonBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ButtonBar_AlertDialog = global::xamarin_android.Resource.Style.Widget_AppCompat_ButtonBar_AlertDialog;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Button_Borderless = global::xamarin_android.Resource.Style.Widget_AppCompat_Button_Borderless;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Button_Borderless_Colored = global::xamarin_android.Resource.Style.Widget_AppCompat_Button_Borderless_Colored;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Button_ButtonBar_AlertDialog = global::xamarin_android.Resource.Style.Widget_AppCompat_Button_ButtonBar_AlertDialog;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Button_Colored = global::xamarin_android.Resource.Style.Widget_AppCompat_Button_Colored;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Button_Small = global::xamarin_android.Resource.Style.Widget_AppCompat_Button_Small;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_CompoundButton_CheckBox = global::xamarin_android.Resource.Style.Widget_AppCompat_CompoundButton_CheckBox;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_CompoundButton_RadioButton = global::xamarin_android.Resource.Style.Widget_AppCompat_CompoundButton_RadioButton;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_CompoundButton_Switch = global::xamarin_android.Resource.Style.Widget_AppCompat_CompoundButton_Switch;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_DrawerArrowToggle = global::xamarin_android.Resource.Style.Widget_AppCompat_DrawerArrowToggle;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_DropDownItem_Spinner = global::xamarin_android.Resource.Style.Widget_AppCompat_DropDownItem_Spinner;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_EditText = global::xamarin_android.Resource.Style.Widget_AppCompat_EditText;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ImageButton = global::xamarin_android.Resource.Style.Widget_AppCompat_ImageButton;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionBar = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid_Inverse = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid_Inverse;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar_Inverse = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar_Inverse;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText_Inverse = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText_Inverse;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView_Inverse = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView_Inverse;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionButton = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionButton;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionButton_CloseMode = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionButton_CloseMode;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionButton_Overflow = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionButton_Overflow;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActionMode_Inverse = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActionMode_Inverse;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ActivityChooserView = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ActivityChooserView;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_AutoCompleteTextView = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_AutoCompleteTextView;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_DropDownItem_Spinner = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_DropDownItem_Spinner;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ListPopupWindow = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ListPopupWindow;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_ListView_DropDown = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_ListView_DropDown;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_PopupMenu = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_PopupMenu;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_PopupMenu_Overflow = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_PopupMenu_Overflow;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_SearchView = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_SearchView;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Light_Spinner_DropDown_ActionBar = global::xamarin_android.Resource.Style.Widget_AppCompat_Light_Spinner_DropDown_ActionBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ListMenuView = global::xamarin_android.Resource.Style.Widget_AppCompat_ListMenuView;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ListPopupWindow = global::xamarin_android.Resource.Style.Widget_AppCompat_ListPopupWindow;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ListView = global::xamarin_android.Resource.Style.Widget_AppCompat_ListView;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ListView_DropDown = global::xamarin_android.Resource.Style.Widget_AppCompat_ListView_DropDown;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ListView_Menu = global::xamarin_android.Resource.Style.Widget_AppCompat_ListView_Menu;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_PopupMenu = global::xamarin_android.Resource.Style.Widget_AppCompat_PopupMenu;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_PopupMenu_Overflow = global::xamarin_android.Resource.Style.Widget_AppCompat_PopupMenu_Overflow;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_PopupWindow = global::xamarin_android.Resource.Style.Widget_AppCompat_PopupWindow;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ProgressBar = global::xamarin_android.Resource.Style.Widget_AppCompat_ProgressBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_ProgressBar_Horizontal = global::xamarin_android.Resource.Style.Widget_AppCompat_ProgressBar_Horizontal;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_RatingBar = global::xamarin_android.Resource.Style.Widget_AppCompat_RatingBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_RatingBar_Indicator = global::xamarin_android.Resource.Style.Widget_AppCompat_RatingBar_Indicator;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_RatingBar_Small = global::xamarin_android.Resource.Style.Widget_AppCompat_RatingBar_Small;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_SearchView = global::xamarin_android.Resource.Style.Widget_AppCompat_SearchView;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_SearchView_ActionBar = global::xamarin_android.Resource.Style.Widget_AppCompat_SearchView_ActionBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_SeekBar = global::xamarin_android.Resource.Style.Widget_AppCompat_SeekBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_SeekBar_Discrete = global::xamarin_android.Resource.Style.Widget_AppCompat_SeekBar_Discrete;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Spinner = global::xamarin_android.Resource.Style.Widget_AppCompat_Spinner;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Spinner_DropDown = global::xamarin_android.Resource.Style.Widget_AppCompat_Spinner_DropDown;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Spinner_DropDown_ActionBar = global::xamarin_android.Resource.Style.Widget_AppCompat_Spinner_DropDown_ActionBar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Spinner_Underlined = global::xamarin_android.Resource.Style.Widget_AppCompat_Spinner_Underlined;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_TextView_SpinnerItem = global::xamarin_android.Resource.Style.Widget_AppCompat_TextView_SpinnerItem;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Toolbar = global::xamarin_android.Resource.Style.Widget_AppCompat_Toolbar;
- global::devolutions_crypto.Resource.Style.Widget_AppCompat_Toolbar_Button_Navigation = global::xamarin_android.Resource.Style.Widget_AppCompat_Toolbar_Button_Navigation;
- global::devolutions_crypto.Resource.Style.Widget_Compat_NotificationActionContainer = global::xamarin_android.Resource.Style.Widget_Compat_NotificationActionContainer;
- global::devolutions_crypto.Resource.Style.Widget_Compat_NotificationActionText = global::xamarin_android.Resource.Style.Widget_Compat_NotificationActionText;
- global::devolutions_crypto.Resource.Style.Widget_Support_CoordinatorLayout = global::xamarin_android.Resource.Style.Widget_Support_CoordinatorLayout;
- global::devolutions_crypto.Resource.Styleable.ActionBar = global::xamarin_android.Resource.Styleable.ActionBar;
- global::devolutions_crypto.Resource.Styleable.ActionBarLayout = global::xamarin_android.Resource.Styleable.ActionBarLayout;
- global::devolutions_crypto.Resource.Styleable.ActionBarLayout_android_layout_gravity = global::xamarin_android.Resource.Styleable.ActionBarLayout_android_layout_gravity;
- global::devolutions_crypto.Resource.Styleable.ActionBar_background = global::xamarin_android.Resource.Styleable.ActionBar_background;
- global::devolutions_crypto.Resource.Styleable.ActionBar_backgroundSplit = global::xamarin_android.Resource.Styleable.ActionBar_backgroundSplit;
- global::devolutions_crypto.Resource.Styleable.ActionBar_backgroundStacked = global::xamarin_android.Resource.Styleable.ActionBar_backgroundStacked;
- global::devolutions_crypto.Resource.Styleable.ActionBar_contentInsetEnd = global::xamarin_android.Resource.Styleable.ActionBar_contentInsetEnd;
- global::devolutions_crypto.Resource.Styleable.ActionBar_contentInsetEndWithActions = global::xamarin_android.Resource.Styleable.ActionBar_contentInsetEndWithActions;
- global::devolutions_crypto.Resource.Styleable.ActionBar_contentInsetLeft = global::xamarin_android.Resource.Styleable.ActionBar_contentInsetLeft;
- global::devolutions_crypto.Resource.Styleable.ActionBar_contentInsetRight = global::xamarin_android.Resource.Styleable.ActionBar_contentInsetRight;
- global::devolutions_crypto.Resource.Styleable.ActionBar_contentInsetStart = global::xamarin_android.Resource.Styleable.ActionBar_contentInsetStart;
- global::devolutions_crypto.Resource.Styleable.ActionBar_contentInsetStartWithNavigation = global::xamarin_android.Resource.Styleable.ActionBar_contentInsetStartWithNavigation;
- global::devolutions_crypto.Resource.Styleable.ActionBar_customNavigationLayout = global::xamarin_android.Resource.Styleable.ActionBar_customNavigationLayout;
- global::devolutions_crypto.Resource.Styleable.ActionBar_displayOptions = global::xamarin_android.Resource.Styleable.ActionBar_displayOptions;
- global::devolutions_crypto.Resource.Styleable.ActionBar_divider = global::xamarin_android.Resource.Styleable.ActionBar_divider;
- global::devolutions_crypto.Resource.Styleable.ActionBar_elevation = global::xamarin_android.Resource.Styleable.ActionBar_elevation;
- global::devolutions_crypto.Resource.Styleable.ActionBar_height = global::xamarin_android.Resource.Styleable.ActionBar_height;
- global::devolutions_crypto.Resource.Styleable.ActionBar_hideOnContentScroll = global::xamarin_android.Resource.Styleable.ActionBar_hideOnContentScroll;
- global::devolutions_crypto.Resource.Styleable.ActionBar_homeAsUpIndicator = global::xamarin_android.Resource.Styleable.ActionBar_homeAsUpIndicator;
- global::devolutions_crypto.Resource.Styleable.ActionBar_homeLayout = global::xamarin_android.Resource.Styleable.ActionBar_homeLayout;
- global::devolutions_crypto.Resource.Styleable.ActionBar_icon = global::xamarin_android.Resource.Styleable.ActionBar_icon;
- global::devolutions_crypto.Resource.Styleable.ActionBar_indeterminateProgressStyle = global::xamarin_android.Resource.Styleable.ActionBar_indeterminateProgressStyle;
- global::devolutions_crypto.Resource.Styleable.ActionBar_itemPadding = global::xamarin_android.Resource.Styleable.ActionBar_itemPadding;
- global::devolutions_crypto.Resource.Styleable.ActionBar_logo = global::xamarin_android.Resource.Styleable.ActionBar_logo;
- global::devolutions_crypto.Resource.Styleable.ActionBar_navigationMode = global::xamarin_android.Resource.Styleable.ActionBar_navigationMode;
- global::devolutions_crypto.Resource.Styleable.ActionBar_popupTheme = global::xamarin_android.Resource.Styleable.ActionBar_popupTheme;
- global::devolutions_crypto.Resource.Styleable.ActionBar_progressBarPadding = global::xamarin_android.Resource.Styleable.ActionBar_progressBarPadding;
- global::devolutions_crypto.Resource.Styleable.ActionBar_progressBarStyle = global::xamarin_android.Resource.Styleable.ActionBar_progressBarStyle;
- global::devolutions_crypto.Resource.Styleable.ActionBar_subtitle = global::xamarin_android.Resource.Styleable.ActionBar_subtitle;
- global::devolutions_crypto.Resource.Styleable.ActionBar_subtitleTextStyle = global::xamarin_android.Resource.Styleable.ActionBar_subtitleTextStyle;
- global::devolutions_crypto.Resource.Styleable.ActionBar_title = global::xamarin_android.Resource.Styleable.ActionBar_title;
- global::devolutions_crypto.Resource.Styleable.ActionBar_titleTextStyle = global::xamarin_android.Resource.Styleable.ActionBar_titleTextStyle;
- global::devolutions_crypto.Resource.Styleable.ActionMenuItemView = global::xamarin_android.Resource.Styleable.ActionMenuItemView;
- global::devolutions_crypto.Resource.Styleable.ActionMenuItemView_android_minWidth = global::xamarin_android.Resource.Styleable.ActionMenuItemView_android_minWidth;
- global::devolutions_crypto.Resource.Styleable.ActionMenuView = global::xamarin_android.Resource.Styleable.ActionMenuView;
- global::devolutions_crypto.Resource.Styleable.ActionMode = global::xamarin_android.Resource.Styleable.ActionMode;
- global::devolutions_crypto.Resource.Styleable.ActionMode_background = global::xamarin_android.Resource.Styleable.ActionMode_background;
- global::devolutions_crypto.Resource.Styleable.ActionMode_backgroundSplit = global::xamarin_android.Resource.Styleable.ActionMode_backgroundSplit;
- global::devolutions_crypto.Resource.Styleable.ActionMode_closeItemLayout = global::xamarin_android.Resource.Styleable.ActionMode_closeItemLayout;
- global::devolutions_crypto.Resource.Styleable.ActionMode_height = global::xamarin_android.Resource.Styleable.ActionMode_height;
- global::devolutions_crypto.Resource.Styleable.ActionMode_subtitleTextStyle = global::xamarin_android.Resource.Styleable.ActionMode_subtitleTextStyle;
- global::devolutions_crypto.Resource.Styleable.ActionMode_titleTextStyle = global::xamarin_android.Resource.Styleable.ActionMode_titleTextStyle;
- global::devolutions_crypto.Resource.Styleable.ActivityChooserView = global::xamarin_android.Resource.Styleable.ActivityChooserView;
- global::devolutions_crypto.Resource.Styleable.ActivityChooserView_expandActivityOverflowButtonDrawable = global::xamarin_android.Resource.Styleable.ActivityChooserView_expandActivityOverflowButtonDrawable;
- global::devolutions_crypto.Resource.Styleable.ActivityChooserView_initialActivityCount = global::xamarin_android.Resource.Styleable.ActivityChooserView_initialActivityCount;
- global::devolutions_crypto.Resource.Styleable.AlertDialog = global::xamarin_android.Resource.Styleable.AlertDialog;
- global::devolutions_crypto.Resource.Styleable.AlertDialog_android_layout = global::xamarin_android.Resource.Styleable.AlertDialog_android_layout;
- global::devolutions_crypto.Resource.Styleable.AlertDialog_buttonIconDimen = global::xamarin_android.Resource.Styleable.AlertDialog_buttonIconDimen;
- global::devolutions_crypto.Resource.Styleable.AlertDialog_buttonPanelSideLayout = global::xamarin_android.Resource.Styleable.AlertDialog_buttonPanelSideLayout;
- global::devolutions_crypto.Resource.Styleable.AlertDialog_listItemLayout = global::xamarin_android.Resource.Styleable.AlertDialog_listItemLayout;
- global::devolutions_crypto.Resource.Styleable.AlertDialog_listLayout = global::xamarin_android.Resource.Styleable.AlertDialog_listLayout;
- global::devolutions_crypto.Resource.Styleable.AlertDialog_multiChoiceItemLayout = global::xamarin_android.Resource.Styleable.AlertDialog_multiChoiceItemLayout;
- global::devolutions_crypto.Resource.Styleable.AlertDialog_showTitle = global::xamarin_android.Resource.Styleable.AlertDialog_showTitle;
- global::devolutions_crypto.Resource.Styleable.AlertDialog_singleChoiceItemLayout = global::xamarin_android.Resource.Styleable.AlertDialog_singleChoiceItemLayout;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableCompat = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableCompat;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableCompat_android_constantSize = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableCompat_android_constantSize;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableCompat_android_dither = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableCompat_android_dither;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableCompat_android_enterFadeDuration = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableCompat_android_enterFadeDuration;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableCompat_android_exitFadeDuration = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableCompat_android_exitFadeDuration;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableCompat_android_variablePadding = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableCompat_android_variablePadding;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableCompat_android_visible = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableCompat_android_visible;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableItem = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableItem;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableItem_android_drawable = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableItem_android_drawable;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableItem_android_id = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableItem_android_id;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableTransition = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableTransition;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableTransition_android_drawable = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableTransition_android_drawable;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableTransition_android_fromId = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableTransition_android_fromId;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableTransition_android_reversible = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableTransition_android_reversible;
- global::devolutions_crypto.Resource.Styleable.AnimatedStateListDrawableTransition_android_toId = global::xamarin_android.Resource.Styleable.AnimatedStateListDrawableTransition_android_toId;
- global::devolutions_crypto.Resource.Styleable.AppCompatImageView = global::xamarin_android.Resource.Styleable.AppCompatImageView;
- global::devolutions_crypto.Resource.Styleable.AppCompatImageView_android_src = global::xamarin_android.Resource.Styleable.AppCompatImageView_android_src;
- global::devolutions_crypto.Resource.Styleable.AppCompatImageView_srcCompat = global::xamarin_android.Resource.Styleable.AppCompatImageView_srcCompat;
- global::devolutions_crypto.Resource.Styleable.AppCompatImageView_tint = global::xamarin_android.Resource.Styleable.AppCompatImageView_tint;
- global::devolutions_crypto.Resource.Styleable.AppCompatImageView_tintMode = global::xamarin_android.Resource.Styleable.AppCompatImageView_tintMode;
- global::devolutions_crypto.Resource.Styleable.AppCompatSeekBar = global::xamarin_android.Resource.Styleable.AppCompatSeekBar;
- global::devolutions_crypto.Resource.Styleable.AppCompatSeekBar_android_thumb = global::xamarin_android.Resource.Styleable.AppCompatSeekBar_android_thumb;
- global::devolutions_crypto.Resource.Styleable.AppCompatSeekBar_tickMark = global::xamarin_android.Resource.Styleable.AppCompatSeekBar_tickMark;
- global::devolutions_crypto.Resource.Styleable.AppCompatSeekBar_tickMarkTint = global::xamarin_android.Resource.Styleable.AppCompatSeekBar_tickMarkTint;
- global::devolutions_crypto.Resource.Styleable.AppCompatSeekBar_tickMarkTintMode = global::xamarin_android.Resource.Styleable.AppCompatSeekBar_tickMarkTintMode;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextHelper = global::xamarin_android.Resource.Styleable.AppCompatTextHelper;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextHelper_android_drawableBottom = global::xamarin_android.Resource.Styleable.AppCompatTextHelper_android_drawableBottom;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextHelper_android_drawableEnd = global::xamarin_android.Resource.Styleable.AppCompatTextHelper_android_drawableEnd;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextHelper_android_drawableLeft = global::xamarin_android.Resource.Styleable.AppCompatTextHelper_android_drawableLeft;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextHelper_android_drawableRight = global::xamarin_android.Resource.Styleable.AppCompatTextHelper_android_drawableRight;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextHelper_android_drawableStart = global::xamarin_android.Resource.Styleable.AppCompatTextHelper_android_drawableStart;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextHelper_android_drawableTop = global::xamarin_android.Resource.Styleable.AppCompatTextHelper_android_drawableTop;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextHelper_android_textAppearance = global::xamarin_android.Resource.Styleable.AppCompatTextHelper_android_textAppearance;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView = global::xamarin_android.Resource.Styleable.AppCompatTextView;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView_android_textAppearance = global::xamarin_android.Resource.Styleable.AppCompatTextView_android_textAppearance;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView_autoSizeMaxTextSize = global::xamarin_android.Resource.Styleable.AppCompatTextView_autoSizeMaxTextSize;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView_autoSizeMinTextSize = global::xamarin_android.Resource.Styleable.AppCompatTextView_autoSizeMinTextSize;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView_autoSizePresetSizes = global::xamarin_android.Resource.Styleable.AppCompatTextView_autoSizePresetSizes;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView_autoSizeStepGranularity = global::xamarin_android.Resource.Styleable.AppCompatTextView_autoSizeStepGranularity;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView_autoSizeTextType = global::xamarin_android.Resource.Styleable.AppCompatTextView_autoSizeTextType;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView_firstBaselineToTopHeight = global::xamarin_android.Resource.Styleable.AppCompatTextView_firstBaselineToTopHeight;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView_fontFamily = global::xamarin_android.Resource.Styleable.AppCompatTextView_fontFamily;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView_lastBaselineToBottomHeight = global::xamarin_android.Resource.Styleable.AppCompatTextView_lastBaselineToBottomHeight;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView_lineHeight = global::xamarin_android.Resource.Styleable.AppCompatTextView_lineHeight;
- global::devolutions_crypto.Resource.Styleable.AppCompatTextView_textAllCaps = global::xamarin_android.Resource.Styleable.AppCompatTextView_textAllCaps;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme = global::xamarin_android.Resource.Styleable.AppCompatTheme;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionBarDivider = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionBarDivider;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionBarItemBackground = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionBarItemBackground;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionBarPopupTheme = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionBarPopupTheme;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionBarSize = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionBarSize;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionBarSplitStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionBarSplitStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionBarStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionBarStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionBarTabBarStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionBarTabBarStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionBarTabStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionBarTabStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionBarTabTextStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionBarTabTextStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionBarTheme = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionBarTheme;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionBarWidgetTheme = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionBarWidgetTheme;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionButtonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionButtonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionDropDownStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionDropDownStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionMenuTextAppearance = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionMenuTextAppearance;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionMenuTextColor = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionMenuTextColor;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModeBackground = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModeBackground;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModeCloseButtonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModeCloseButtonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModeCloseDrawable = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModeCloseDrawable;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModeCopyDrawable = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModeCopyDrawable;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModeCutDrawable = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModeCutDrawable;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModeFindDrawable = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModeFindDrawable;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModePasteDrawable = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModePasteDrawable;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModePopupWindowStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModePopupWindowStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModeSelectAllDrawable = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModeSelectAllDrawable;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModeShareDrawable = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModeShareDrawable;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModeSplitBackground = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModeSplitBackground;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModeStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModeStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionModeWebSearchDrawable = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionModeWebSearchDrawable;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionOverflowButtonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionOverflowButtonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_actionOverflowMenuStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_actionOverflowMenuStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_activityChooserViewStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_activityChooserViewStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_alertDialogButtonGroupStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_alertDialogButtonGroupStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_alertDialogCenterButtons = global::xamarin_android.Resource.Styleable.AppCompatTheme_alertDialogCenterButtons;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_alertDialogStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_alertDialogStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_alertDialogTheme = global::xamarin_android.Resource.Styleable.AppCompatTheme_alertDialogTheme;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_android_windowAnimationStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_android_windowAnimationStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_android_windowIsFloating = global::xamarin_android.Resource.Styleable.AppCompatTheme_android_windowIsFloating;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_autoCompleteTextViewStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_autoCompleteTextViewStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_borderlessButtonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_borderlessButtonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_buttonBarButtonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_buttonBarButtonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_buttonBarNegativeButtonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_buttonBarNegativeButtonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_buttonBarNeutralButtonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_buttonBarNeutralButtonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_buttonBarPositiveButtonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_buttonBarPositiveButtonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_buttonBarStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_buttonBarStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_buttonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_buttonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_buttonStyleSmall = global::xamarin_android.Resource.Styleable.AppCompatTheme_buttonStyleSmall;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_checkboxStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_checkboxStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_checkedTextViewStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_checkedTextViewStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_colorAccent = global::xamarin_android.Resource.Styleable.AppCompatTheme_colorAccent;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_colorBackgroundFloating = global::xamarin_android.Resource.Styleable.AppCompatTheme_colorBackgroundFloating;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_colorButtonNormal = global::xamarin_android.Resource.Styleable.AppCompatTheme_colorButtonNormal;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_colorControlActivated = global::xamarin_android.Resource.Styleable.AppCompatTheme_colorControlActivated;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_colorControlHighlight = global::xamarin_android.Resource.Styleable.AppCompatTheme_colorControlHighlight;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_colorControlNormal = global::xamarin_android.Resource.Styleable.AppCompatTheme_colorControlNormal;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_colorError = global::xamarin_android.Resource.Styleable.AppCompatTheme_colorError;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_colorPrimary = global::xamarin_android.Resource.Styleable.AppCompatTheme_colorPrimary;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_colorPrimaryDark = global::xamarin_android.Resource.Styleable.AppCompatTheme_colorPrimaryDark;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_colorSwitchThumbNormal = global::xamarin_android.Resource.Styleable.AppCompatTheme_colorSwitchThumbNormal;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_controlBackground = global::xamarin_android.Resource.Styleable.AppCompatTheme_controlBackground;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_dialogCornerRadius = global::xamarin_android.Resource.Styleable.AppCompatTheme_dialogCornerRadius;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_dialogPreferredPadding = global::xamarin_android.Resource.Styleable.AppCompatTheme_dialogPreferredPadding;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_dialogTheme = global::xamarin_android.Resource.Styleable.AppCompatTheme_dialogTheme;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_dividerHorizontal = global::xamarin_android.Resource.Styleable.AppCompatTheme_dividerHorizontal;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_dividerVertical = global::xamarin_android.Resource.Styleable.AppCompatTheme_dividerVertical;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_dropdownListPreferredItemHeight = global::xamarin_android.Resource.Styleable.AppCompatTheme_dropdownListPreferredItemHeight;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_dropDownListViewStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_dropDownListViewStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_editTextBackground = global::xamarin_android.Resource.Styleable.AppCompatTheme_editTextBackground;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_editTextColor = global::xamarin_android.Resource.Styleable.AppCompatTheme_editTextColor;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_editTextStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_editTextStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_homeAsUpIndicator = global::xamarin_android.Resource.Styleable.AppCompatTheme_homeAsUpIndicator;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_imageButtonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_imageButtonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_listChoiceBackgroundIndicator = global::xamarin_android.Resource.Styleable.AppCompatTheme_listChoiceBackgroundIndicator;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_listDividerAlertDialog = global::xamarin_android.Resource.Styleable.AppCompatTheme_listDividerAlertDialog;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_listMenuViewStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_listMenuViewStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_listPopupWindowStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_listPopupWindowStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_listPreferredItemHeight = global::xamarin_android.Resource.Styleable.AppCompatTheme_listPreferredItemHeight;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_listPreferredItemHeightLarge = global::xamarin_android.Resource.Styleable.AppCompatTheme_listPreferredItemHeightLarge;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_listPreferredItemHeightSmall = global::xamarin_android.Resource.Styleable.AppCompatTheme_listPreferredItemHeightSmall;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingLeft = global::xamarin_android.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingLeft;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingRight = global::xamarin_android.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingRight;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_panelBackground = global::xamarin_android.Resource.Styleable.AppCompatTheme_panelBackground;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_panelMenuListTheme = global::xamarin_android.Resource.Styleable.AppCompatTheme_panelMenuListTheme;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_panelMenuListWidth = global::xamarin_android.Resource.Styleable.AppCompatTheme_panelMenuListWidth;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_popupMenuStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_popupMenuStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_popupWindowStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_popupWindowStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_radioButtonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_radioButtonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_ratingBarStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_ratingBarStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_ratingBarStyleIndicator = global::xamarin_android.Resource.Styleable.AppCompatTheme_ratingBarStyleIndicator;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_ratingBarStyleSmall = global::xamarin_android.Resource.Styleable.AppCompatTheme_ratingBarStyleSmall;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_searchViewStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_searchViewStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_seekBarStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_seekBarStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_selectableItemBackground = global::xamarin_android.Resource.Styleable.AppCompatTheme_selectableItemBackground;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_selectableItemBackgroundBorderless = global::xamarin_android.Resource.Styleable.AppCompatTheme_selectableItemBackgroundBorderless;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_spinnerDropDownItemStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_spinnerDropDownItemStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_spinnerStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_spinnerStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_switchStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_switchStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_textAppearanceLargePopupMenu = global::xamarin_android.Resource.Styleable.AppCompatTheme_textAppearanceLargePopupMenu;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_textAppearanceListItem = global::xamarin_android.Resource.Styleable.AppCompatTheme_textAppearanceListItem;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_textAppearanceListItemSecondary = global::xamarin_android.Resource.Styleable.AppCompatTheme_textAppearanceListItemSecondary;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_textAppearanceListItemSmall = global::xamarin_android.Resource.Styleable.AppCompatTheme_textAppearanceListItemSmall;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_textAppearancePopupMenuHeader = global::xamarin_android.Resource.Styleable.AppCompatTheme_textAppearancePopupMenuHeader;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultSubtitle = global::xamarin_android.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultSubtitle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultTitle = global::xamarin_android.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultTitle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_textAppearanceSmallPopupMenu = global::xamarin_android.Resource.Styleable.AppCompatTheme_textAppearanceSmallPopupMenu;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_textColorAlertDialogListItem = global::xamarin_android.Resource.Styleable.AppCompatTheme_textColorAlertDialogListItem;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_textColorSearchUrl = global::xamarin_android.Resource.Styleable.AppCompatTheme_textColorSearchUrl;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_toolbarNavigationButtonStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_toolbarNavigationButtonStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_toolbarStyle = global::xamarin_android.Resource.Styleable.AppCompatTheme_toolbarStyle;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_tooltipForegroundColor = global::xamarin_android.Resource.Styleable.AppCompatTheme_tooltipForegroundColor;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_tooltipFrameBackground = global::xamarin_android.Resource.Styleable.AppCompatTheme_tooltipFrameBackground;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_viewInflaterClass = global::xamarin_android.Resource.Styleable.AppCompatTheme_viewInflaterClass;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_windowActionBar = global::xamarin_android.Resource.Styleable.AppCompatTheme_windowActionBar;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_windowActionBarOverlay = global::xamarin_android.Resource.Styleable.AppCompatTheme_windowActionBarOverlay;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_windowActionModeOverlay = global::xamarin_android.Resource.Styleable.AppCompatTheme_windowActionModeOverlay;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_windowFixedHeightMajor = global::xamarin_android.Resource.Styleable.AppCompatTheme_windowFixedHeightMajor;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_windowFixedHeightMinor = global::xamarin_android.Resource.Styleable.AppCompatTheme_windowFixedHeightMinor;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_windowFixedWidthMajor = global::xamarin_android.Resource.Styleable.AppCompatTheme_windowFixedWidthMajor;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_windowFixedWidthMinor = global::xamarin_android.Resource.Styleable.AppCompatTheme_windowFixedWidthMinor;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_windowMinWidthMajor = global::xamarin_android.Resource.Styleable.AppCompatTheme_windowMinWidthMajor;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_windowMinWidthMinor = global::xamarin_android.Resource.Styleable.AppCompatTheme_windowMinWidthMinor;
- global::devolutions_crypto.Resource.Styleable.AppCompatTheme_windowNoTitle = global::xamarin_android.Resource.Styleable.AppCompatTheme_windowNoTitle;
- global::devolutions_crypto.Resource.Styleable.ButtonBarLayout = global::xamarin_android.Resource.Styleable.ButtonBarLayout;
- global::devolutions_crypto.Resource.Styleable.ButtonBarLayout_allowStacking = global::xamarin_android.Resource.Styleable.ButtonBarLayout_allowStacking;
- global::devolutions_crypto.Resource.Styleable.ColorStateListItem = global::xamarin_android.Resource.Styleable.ColorStateListItem;
- global::devolutions_crypto.Resource.Styleable.ColorStateListItem_alpha = global::xamarin_android.Resource.Styleable.ColorStateListItem_alpha;
- global::devolutions_crypto.Resource.Styleable.ColorStateListItem_android_alpha = global::xamarin_android.Resource.Styleable.ColorStateListItem_android_alpha;
- global::devolutions_crypto.Resource.Styleable.ColorStateListItem_android_color = global::xamarin_android.Resource.Styleable.ColorStateListItem_android_color;
- global::devolutions_crypto.Resource.Styleable.CompoundButton = global::xamarin_android.Resource.Styleable.CompoundButton;
- global::devolutions_crypto.Resource.Styleable.CompoundButton_android_button = global::xamarin_android.Resource.Styleable.CompoundButton_android_button;
- global::devolutions_crypto.Resource.Styleable.CompoundButton_buttonTint = global::xamarin_android.Resource.Styleable.CompoundButton_buttonTint;
- global::devolutions_crypto.Resource.Styleable.CompoundButton_buttonTintMode = global::xamarin_android.Resource.Styleable.CompoundButton_buttonTintMode;
- global::devolutions_crypto.Resource.Styleable.CoordinatorLayout = global::xamarin_android.Resource.Styleable.CoordinatorLayout;
- global::devolutions_crypto.Resource.Styleable.CoordinatorLayout_keylines = global::xamarin_android.Resource.Styleable.CoordinatorLayout_keylines;
- global::devolutions_crypto.Resource.Styleable.CoordinatorLayout_Layout = global::xamarin_android.Resource.Styleable.CoordinatorLayout_Layout;
- global::devolutions_crypto.Resource.Styleable.CoordinatorLayout_Layout_android_layout_gravity = global::xamarin_android.Resource.Styleable.CoordinatorLayout_Layout_android_layout_gravity;
- global::devolutions_crypto.Resource.Styleable.CoordinatorLayout_Layout_layout_anchor = global::xamarin_android.Resource.Styleable.CoordinatorLayout_Layout_layout_anchor;
- global::devolutions_crypto.Resource.Styleable.CoordinatorLayout_Layout_layout_anchorGravity = global::xamarin_android.Resource.Styleable.CoordinatorLayout_Layout_layout_anchorGravity;
- global::devolutions_crypto.Resource.Styleable.CoordinatorLayout_Layout_layout_behavior = global::xamarin_android.Resource.Styleable.CoordinatorLayout_Layout_layout_behavior;
- global::devolutions_crypto.Resource.Styleable.CoordinatorLayout_Layout_layout_dodgeInsetEdges = global::xamarin_android.Resource.Styleable.CoordinatorLayout_Layout_layout_dodgeInsetEdges;
- global::devolutions_crypto.Resource.Styleable.CoordinatorLayout_Layout_layout_insetEdge = global::xamarin_android.Resource.Styleable.CoordinatorLayout_Layout_layout_insetEdge;
- global::devolutions_crypto.Resource.Styleable.CoordinatorLayout_Layout_layout_keyline = global::xamarin_android.Resource.Styleable.CoordinatorLayout_Layout_layout_keyline;
- global::devolutions_crypto.Resource.Styleable.CoordinatorLayout_statusBarBackground = global::xamarin_android.Resource.Styleable.CoordinatorLayout_statusBarBackground;
- global::devolutions_crypto.Resource.Styleable.DrawerArrowToggle = global::xamarin_android.Resource.Styleable.DrawerArrowToggle;
- global::devolutions_crypto.Resource.Styleable.DrawerArrowToggle_arrowHeadLength = global::xamarin_android.Resource.Styleable.DrawerArrowToggle_arrowHeadLength;
- global::devolutions_crypto.Resource.Styleable.DrawerArrowToggle_arrowShaftLength = global::xamarin_android.Resource.Styleable.DrawerArrowToggle_arrowShaftLength;
- global::devolutions_crypto.Resource.Styleable.DrawerArrowToggle_barLength = global::xamarin_android.Resource.Styleable.DrawerArrowToggle_barLength;
- global::devolutions_crypto.Resource.Styleable.DrawerArrowToggle_color = global::xamarin_android.Resource.Styleable.DrawerArrowToggle_color;
- global::devolutions_crypto.Resource.Styleable.DrawerArrowToggle_drawableSize = global::xamarin_android.Resource.Styleable.DrawerArrowToggle_drawableSize;
- global::devolutions_crypto.Resource.Styleable.DrawerArrowToggle_gapBetweenBars = global::xamarin_android.Resource.Styleable.DrawerArrowToggle_gapBetweenBars;
- global::devolutions_crypto.Resource.Styleable.DrawerArrowToggle_spinBars = global::xamarin_android.Resource.Styleable.DrawerArrowToggle_spinBars;
- global::devolutions_crypto.Resource.Styleable.DrawerArrowToggle_thickness = global::xamarin_android.Resource.Styleable.DrawerArrowToggle_thickness;
- global::devolutions_crypto.Resource.Styleable.FontFamily = global::xamarin_android.Resource.Styleable.FontFamily;
- global::devolutions_crypto.Resource.Styleable.FontFamilyFont = global::xamarin_android.Resource.Styleable.FontFamilyFont;
- global::devolutions_crypto.Resource.Styleable.FontFamilyFont_android_font = global::xamarin_android.Resource.Styleable.FontFamilyFont_android_font;
- global::devolutions_crypto.Resource.Styleable.FontFamilyFont_android_fontStyle = global::xamarin_android.Resource.Styleable.FontFamilyFont_android_fontStyle;
- global::devolutions_crypto.Resource.Styleable.FontFamilyFont_android_fontVariationSettings = global::xamarin_android.Resource.Styleable.FontFamilyFont_android_fontVariationSettings;
- global::devolutions_crypto.Resource.Styleable.FontFamilyFont_android_fontWeight = global::xamarin_android.Resource.Styleable.FontFamilyFont_android_fontWeight;
- global::devolutions_crypto.Resource.Styleable.FontFamilyFont_android_ttcIndex = global::xamarin_android.Resource.Styleable.FontFamilyFont_android_ttcIndex;
- global::devolutions_crypto.Resource.Styleable.FontFamilyFont_font = global::xamarin_android.Resource.Styleable.FontFamilyFont_font;
- global::devolutions_crypto.Resource.Styleable.FontFamilyFont_fontStyle = global::xamarin_android.Resource.Styleable.FontFamilyFont_fontStyle;
- global::devolutions_crypto.Resource.Styleable.FontFamilyFont_fontVariationSettings = global::xamarin_android.Resource.Styleable.FontFamilyFont_fontVariationSettings;
- global::devolutions_crypto.Resource.Styleable.FontFamilyFont_fontWeight = global::xamarin_android.Resource.Styleable.FontFamilyFont_fontWeight;
- global::devolutions_crypto.Resource.Styleable.FontFamilyFont_ttcIndex = global::xamarin_android.Resource.Styleable.FontFamilyFont_ttcIndex;
- global::devolutions_crypto.Resource.Styleable.FontFamily_fontProviderAuthority = global::xamarin_android.Resource.Styleable.FontFamily_fontProviderAuthority;
- global::devolutions_crypto.Resource.Styleable.FontFamily_fontProviderCerts = global::xamarin_android.Resource.Styleable.FontFamily_fontProviderCerts;
- global::devolutions_crypto.Resource.Styleable.FontFamily_fontProviderFetchStrategy = global::xamarin_android.Resource.Styleable.FontFamily_fontProviderFetchStrategy;
- global::devolutions_crypto.Resource.Styleable.FontFamily_fontProviderFetchTimeout = global::xamarin_android.Resource.Styleable.FontFamily_fontProviderFetchTimeout;
- global::devolutions_crypto.Resource.Styleable.FontFamily_fontProviderPackage = global::xamarin_android.Resource.Styleable.FontFamily_fontProviderPackage;
- global::devolutions_crypto.Resource.Styleable.FontFamily_fontProviderQuery = global::xamarin_android.Resource.Styleable.FontFamily_fontProviderQuery;
- global::devolutions_crypto.Resource.Styleable.GradientColor = global::xamarin_android.Resource.Styleable.GradientColor;
- global::devolutions_crypto.Resource.Styleable.GradientColorItem = global::xamarin_android.Resource.Styleable.GradientColorItem;
- global::devolutions_crypto.Resource.Styleable.GradientColorItem_android_color = global::xamarin_android.Resource.Styleable.GradientColorItem_android_color;
- global::devolutions_crypto.Resource.Styleable.GradientColorItem_android_offset = global::xamarin_android.Resource.Styleable.GradientColorItem_android_offset;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_centerColor = global::xamarin_android.Resource.Styleable.GradientColor_android_centerColor;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_centerX = global::xamarin_android.Resource.Styleable.GradientColor_android_centerX;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_centerY = global::xamarin_android.Resource.Styleable.GradientColor_android_centerY;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_endColor = global::xamarin_android.Resource.Styleable.GradientColor_android_endColor;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_endX = global::xamarin_android.Resource.Styleable.GradientColor_android_endX;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_endY = global::xamarin_android.Resource.Styleable.GradientColor_android_endY;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_gradientRadius = global::xamarin_android.Resource.Styleable.GradientColor_android_gradientRadius;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_startColor = global::xamarin_android.Resource.Styleable.GradientColor_android_startColor;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_startX = global::xamarin_android.Resource.Styleable.GradientColor_android_startX;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_startY = global::xamarin_android.Resource.Styleable.GradientColor_android_startY;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_tileMode = global::xamarin_android.Resource.Styleable.GradientColor_android_tileMode;
- global::devolutions_crypto.Resource.Styleable.GradientColor_android_type = global::xamarin_android.Resource.Styleable.GradientColor_android_type;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat = global::xamarin_android.Resource.Styleable.LinearLayoutCompat;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_android_baselineAligned = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_android_baselineAligned;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_android_baselineAlignedChildIndex = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_android_baselineAlignedChildIndex;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_android_gravity = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_android_gravity;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_android_orientation = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_android_orientation;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_android_weightSum = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_android_weightSum;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_divider = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_divider;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_dividerPadding = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_dividerPadding;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_Layout = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_Layout;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_gravity = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_gravity;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_height = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_height;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_weight = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_weight;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_width = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_width;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_measureWithLargestChild = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_measureWithLargestChild;
- global::devolutions_crypto.Resource.Styleable.LinearLayoutCompat_showDividers = global::xamarin_android.Resource.Styleable.LinearLayoutCompat_showDividers;
- global::devolutions_crypto.Resource.Styleable.ListPopupWindow = global::xamarin_android.Resource.Styleable.ListPopupWindow;
- global::devolutions_crypto.Resource.Styleable.ListPopupWindow_android_dropDownHorizontalOffset = global::xamarin_android.Resource.Styleable.ListPopupWindow_android_dropDownHorizontalOffset;
- global::devolutions_crypto.Resource.Styleable.ListPopupWindow_android_dropDownVerticalOffset = global::xamarin_android.Resource.Styleable.ListPopupWindow_android_dropDownVerticalOffset;
- global::devolutions_crypto.Resource.Styleable.MenuGroup = global::xamarin_android.Resource.Styleable.MenuGroup;
- global::devolutions_crypto.Resource.Styleable.MenuGroup_android_checkableBehavior = global::xamarin_android.Resource.Styleable.MenuGroup_android_checkableBehavior;
- global::devolutions_crypto.Resource.Styleable.MenuGroup_android_enabled = global::xamarin_android.Resource.Styleable.MenuGroup_android_enabled;
- global::devolutions_crypto.Resource.Styleable.MenuGroup_android_id = global::xamarin_android.Resource.Styleable.MenuGroup_android_id;
- global::devolutions_crypto.Resource.Styleable.MenuGroup_android_menuCategory = global::xamarin_android.Resource.Styleable.MenuGroup_android_menuCategory;
- global::devolutions_crypto.Resource.Styleable.MenuGroup_android_orderInCategory = global::xamarin_android.Resource.Styleable.MenuGroup_android_orderInCategory;
- global::devolutions_crypto.Resource.Styleable.MenuGroup_android_visible = global::xamarin_android.Resource.Styleable.MenuGroup_android_visible;
- global::devolutions_crypto.Resource.Styleable.MenuItem = global::xamarin_android.Resource.Styleable.MenuItem;
- global::devolutions_crypto.Resource.Styleable.MenuItem_actionLayout = global::xamarin_android.Resource.Styleable.MenuItem_actionLayout;
- global::devolutions_crypto.Resource.Styleable.MenuItem_actionProviderClass = global::xamarin_android.Resource.Styleable.MenuItem_actionProviderClass;
- global::devolutions_crypto.Resource.Styleable.MenuItem_actionViewClass = global::xamarin_android.Resource.Styleable.MenuItem_actionViewClass;
- global::devolutions_crypto.Resource.Styleable.MenuItem_alphabeticModifiers = global::xamarin_android.Resource.Styleable.MenuItem_alphabeticModifiers;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_alphabeticShortcut = global::xamarin_android.Resource.Styleable.MenuItem_android_alphabeticShortcut;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_checkable = global::xamarin_android.Resource.Styleable.MenuItem_android_checkable;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_checked = global::xamarin_android.Resource.Styleable.MenuItem_android_checked;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_enabled = global::xamarin_android.Resource.Styleable.MenuItem_android_enabled;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_icon = global::xamarin_android.Resource.Styleable.MenuItem_android_icon;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_id = global::xamarin_android.Resource.Styleable.MenuItem_android_id;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_menuCategory = global::xamarin_android.Resource.Styleable.MenuItem_android_menuCategory;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_numericShortcut = global::xamarin_android.Resource.Styleable.MenuItem_android_numericShortcut;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_onClick = global::xamarin_android.Resource.Styleable.MenuItem_android_onClick;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_orderInCategory = global::xamarin_android.Resource.Styleable.MenuItem_android_orderInCategory;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_title = global::xamarin_android.Resource.Styleable.MenuItem_android_title;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_titleCondensed = global::xamarin_android.Resource.Styleable.MenuItem_android_titleCondensed;
- global::devolutions_crypto.Resource.Styleable.MenuItem_android_visible = global::xamarin_android.Resource.Styleable.MenuItem_android_visible;
- global::devolutions_crypto.Resource.Styleable.MenuItem_contentDescription = global::xamarin_android.Resource.Styleable.MenuItem_contentDescription;
- global::devolutions_crypto.Resource.Styleable.MenuItem_iconTint = global::xamarin_android.Resource.Styleable.MenuItem_iconTint;
- global::devolutions_crypto.Resource.Styleable.MenuItem_iconTintMode = global::xamarin_android.Resource.Styleable.MenuItem_iconTintMode;
- global::devolutions_crypto.Resource.Styleable.MenuItem_numericModifiers = global::xamarin_android.Resource.Styleable.MenuItem_numericModifiers;
- global::devolutions_crypto.Resource.Styleable.MenuItem_showAsAction = global::xamarin_android.Resource.Styleable.MenuItem_showAsAction;
- global::devolutions_crypto.Resource.Styleable.MenuItem_tooltipText = global::xamarin_android.Resource.Styleable.MenuItem_tooltipText;
- global::devolutions_crypto.Resource.Styleable.MenuView = global::xamarin_android.Resource.Styleable.MenuView;
- global::devolutions_crypto.Resource.Styleable.MenuView_android_headerBackground = global::xamarin_android.Resource.Styleable.MenuView_android_headerBackground;
- global::devolutions_crypto.Resource.Styleable.MenuView_android_horizontalDivider = global::xamarin_android.Resource.Styleable.MenuView_android_horizontalDivider;
- global::devolutions_crypto.Resource.Styleable.MenuView_android_itemBackground = global::xamarin_android.Resource.Styleable.MenuView_android_itemBackground;
- global::devolutions_crypto.Resource.Styleable.MenuView_android_itemIconDisabledAlpha = global::xamarin_android.Resource.Styleable.MenuView_android_itemIconDisabledAlpha;
- global::devolutions_crypto.Resource.Styleable.MenuView_android_itemTextAppearance = global::xamarin_android.Resource.Styleable.MenuView_android_itemTextAppearance;
- global::devolutions_crypto.Resource.Styleable.MenuView_android_verticalDivider = global::xamarin_android.Resource.Styleable.MenuView_android_verticalDivider;
- global::devolutions_crypto.Resource.Styleable.MenuView_android_windowAnimationStyle = global::xamarin_android.Resource.Styleable.MenuView_android_windowAnimationStyle;
- global::devolutions_crypto.Resource.Styleable.MenuView_preserveIconSpacing = global::xamarin_android.Resource.Styleable.MenuView_preserveIconSpacing;
- global::devolutions_crypto.Resource.Styleable.MenuView_subMenuArrow = global::xamarin_android.Resource.Styleable.MenuView_subMenuArrow;
- global::devolutions_crypto.Resource.Styleable.PopupWindow = global::xamarin_android.Resource.Styleable.PopupWindow;
- global::devolutions_crypto.Resource.Styleable.PopupWindowBackgroundState = global::xamarin_android.Resource.Styleable.PopupWindowBackgroundState;
- global::devolutions_crypto.Resource.Styleable.PopupWindowBackgroundState_state_above_anchor = global::xamarin_android.Resource.Styleable.PopupWindowBackgroundState_state_above_anchor;
- global::devolutions_crypto.Resource.Styleable.PopupWindow_android_popupAnimationStyle = global::xamarin_android.Resource.Styleable.PopupWindow_android_popupAnimationStyle;
- global::devolutions_crypto.Resource.Styleable.PopupWindow_android_popupBackground = global::xamarin_android.Resource.Styleable.PopupWindow_android_popupBackground;
- global::devolutions_crypto.Resource.Styleable.PopupWindow_overlapAnchor = global::xamarin_android.Resource.Styleable.PopupWindow_overlapAnchor;
- global::devolutions_crypto.Resource.Styleable.RecycleListView = global::xamarin_android.Resource.Styleable.RecycleListView;
- global::devolutions_crypto.Resource.Styleable.RecycleListView_paddingBottomNoButtons = global::xamarin_android.Resource.Styleable.RecycleListView_paddingBottomNoButtons;
- global::devolutions_crypto.Resource.Styleable.RecycleListView_paddingTopNoTitle = global::xamarin_android.Resource.Styleable.RecycleListView_paddingTopNoTitle;
- global::devolutions_crypto.Resource.Styleable.SearchView = global::xamarin_android.Resource.Styleable.SearchView;
- global::devolutions_crypto.Resource.Styleable.SearchView_android_focusable = global::xamarin_android.Resource.Styleable.SearchView_android_focusable;
- global::devolutions_crypto.Resource.Styleable.SearchView_android_imeOptions = global::xamarin_android.Resource.Styleable.SearchView_android_imeOptions;
- global::devolutions_crypto.Resource.Styleable.SearchView_android_inputType = global::xamarin_android.Resource.Styleable.SearchView_android_inputType;
- global::devolutions_crypto.Resource.Styleable.SearchView_android_maxWidth = global::xamarin_android.Resource.Styleable.SearchView_android_maxWidth;
- global::devolutions_crypto.Resource.Styleable.SearchView_closeIcon = global::xamarin_android.Resource.Styleable.SearchView_closeIcon;
- global::devolutions_crypto.Resource.Styleable.SearchView_commitIcon = global::xamarin_android.Resource.Styleable.SearchView_commitIcon;
- global::devolutions_crypto.Resource.Styleable.SearchView_defaultQueryHint = global::xamarin_android.Resource.Styleable.SearchView_defaultQueryHint;
- global::devolutions_crypto.Resource.Styleable.SearchView_goIcon = global::xamarin_android.Resource.Styleable.SearchView_goIcon;
- global::devolutions_crypto.Resource.Styleable.SearchView_iconifiedByDefault = global::xamarin_android.Resource.Styleable.SearchView_iconifiedByDefault;
- global::devolutions_crypto.Resource.Styleable.SearchView_layout = global::xamarin_android.Resource.Styleable.SearchView_layout;
- global::devolutions_crypto.Resource.Styleable.SearchView_queryBackground = global::xamarin_android.Resource.Styleable.SearchView_queryBackground;
- global::devolutions_crypto.Resource.Styleable.SearchView_queryHint = global::xamarin_android.Resource.Styleable.SearchView_queryHint;
- global::devolutions_crypto.Resource.Styleable.SearchView_searchHintIcon = global::xamarin_android.Resource.Styleable.SearchView_searchHintIcon;
- global::devolutions_crypto.Resource.Styleable.SearchView_searchIcon = global::xamarin_android.Resource.Styleable.SearchView_searchIcon;
- global::devolutions_crypto.Resource.Styleable.SearchView_submitBackground = global::xamarin_android.Resource.Styleable.SearchView_submitBackground;
- global::devolutions_crypto.Resource.Styleable.SearchView_suggestionRowLayout = global::xamarin_android.Resource.Styleable.SearchView_suggestionRowLayout;
- global::devolutions_crypto.Resource.Styleable.SearchView_voiceIcon = global::xamarin_android.Resource.Styleable.SearchView_voiceIcon;
- global::devolutions_crypto.Resource.Styleable.Spinner = global::xamarin_android.Resource.Styleable.Spinner;
- global::devolutions_crypto.Resource.Styleable.Spinner_android_dropDownWidth = global::xamarin_android.Resource.Styleable.Spinner_android_dropDownWidth;
- global::devolutions_crypto.Resource.Styleable.Spinner_android_entries = global::xamarin_android.Resource.Styleable.Spinner_android_entries;
- global::devolutions_crypto.Resource.Styleable.Spinner_android_popupBackground = global::xamarin_android.Resource.Styleable.Spinner_android_popupBackground;
- global::devolutions_crypto.Resource.Styleable.Spinner_android_prompt = global::xamarin_android.Resource.Styleable.Spinner_android_prompt;
- global::devolutions_crypto.Resource.Styleable.Spinner_popupTheme = global::xamarin_android.Resource.Styleable.Spinner_popupTheme;
- global::devolutions_crypto.Resource.Styleable.StateListDrawable = global::xamarin_android.Resource.Styleable.StateListDrawable;
- global::devolutions_crypto.Resource.Styleable.StateListDrawableItem = global::xamarin_android.Resource.Styleable.StateListDrawableItem;
- global::devolutions_crypto.Resource.Styleable.StateListDrawableItem_android_drawable = global::xamarin_android.Resource.Styleable.StateListDrawableItem_android_drawable;
- global::devolutions_crypto.Resource.Styleable.StateListDrawable_android_constantSize = global::xamarin_android.Resource.Styleable.StateListDrawable_android_constantSize;
- global::devolutions_crypto.Resource.Styleable.StateListDrawable_android_dither = global::xamarin_android.Resource.Styleable.StateListDrawable_android_dither;
- global::devolutions_crypto.Resource.Styleable.StateListDrawable_android_enterFadeDuration = global::xamarin_android.Resource.Styleable.StateListDrawable_android_enterFadeDuration;
- global::devolutions_crypto.Resource.Styleable.StateListDrawable_android_exitFadeDuration = global::xamarin_android.Resource.Styleable.StateListDrawable_android_exitFadeDuration;
- global::devolutions_crypto.Resource.Styleable.StateListDrawable_android_variablePadding = global::xamarin_android.Resource.Styleable.StateListDrawable_android_variablePadding;
- global::devolutions_crypto.Resource.Styleable.StateListDrawable_android_visible = global::xamarin_android.Resource.Styleable.StateListDrawable_android_visible;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat = global::xamarin_android.Resource.Styleable.SwitchCompat;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_android_textOff = global::xamarin_android.Resource.Styleable.SwitchCompat_android_textOff;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_android_textOn = global::xamarin_android.Resource.Styleable.SwitchCompat_android_textOn;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_android_thumb = global::xamarin_android.Resource.Styleable.SwitchCompat_android_thumb;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_showText = global::xamarin_android.Resource.Styleable.SwitchCompat_showText;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_splitTrack = global::xamarin_android.Resource.Styleable.SwitchCompat_splitTrack;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_switchMinWidth = global::xamarin_android.Resource.Styleable.SwitchCompat_switchMinWidth;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_switchPadding = global::xamarin_android.Resource.Styleable.SwitchCompat_switchPadding;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_switchTextAppearance = global::xamarin_android.Resource.Styleable.SwitchCompat_switchTextAppearance;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_thumbTextPadding = global::xamarin_android.Resource.Styleable.SwitchCompat_thumbTextPadding;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_thumbTint = global::xamarin_android.Resource.Styleable.SwitchCompat_thumbTint;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_thumbTintMode = global::xamarin_android.Resource.Styleable.SwitchCompat_thumbTintMode;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_track = global::xamarin_android.Resource.Styleable.SwitchCompat_track;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_trackTint = global::xamarin_android.Resource.Styleable.SwitchCompat_trackTint;
- global::devolutions_crypto.Resource.Styleable.SwitchCompat_trackTintMode = global::xamarin_android.Resource.Styleable.SwitchCompat_trackTintMode;
- global::devolutions_crypto.Resource.Styleable.TextAppearance = global::xamarin_android.Resource.Styleable.TextAppearance;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_android_fontFamily = global::xamarin_android.Resource.Styleable.TextAppearance_android_fontFamily;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_android_shadowColor = global::xamarin_android.Resource.Styleable.TextAppearance_android_shadowColor;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_android_shadowDx = global::xamarin_android.Resource.Styleable.TextAppearance_android_shadowDx;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_android_shadowDy = global::xamarin_android.Resource.Styleable.TextAppearance_android_shadowDy;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_android_shadowRadius = global::xamarin_android.Resource.Styleable.TextAppearance_android_shadowRadius;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_android_textColor = global::xamarin_android.Resource.Styleable.TextAppearance_android_textColor;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_android_textColorHint = global::xamarin_android.Resource.Styleable.TextAppearance_android_textColorHint;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_android_textColorLink = global::xamarin_android.Resource.Styleable.TextAppearance_android_textColorLink;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_android_textSize = global::xamarin_android.Resource.Styleable.TextAppearance_android_textSize;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_android_textStyle = global::xamarin_android.Resource.Styleable.TextAppearance_android_textStyle;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_android_typeface = global::xamarin_android.Resource.Styleable.TextAppearance_android_typeface;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_fontFamily = global::xamarin_android.Resource.Styleable.TextAppearance_fontFamily;
- global::devolutions_crypto.Resource.Styleable.TextAppearance_textAllCaps = global::xamarin_android.Resource.Styleable.TextAppearance_textAllCaps;
- global::devolutions_crypto.Resource.Styleable.Toolbar = global::xamarin_android.Resource.Styleable.Toolbar;
- global::devolutions_crypto.Resource.Styleable.Toolbar_android_gravity = global::xamarin_android.Resource.Styleable.Toolbar_android_gravity;
- global::devolutions_crypto.Resource.Styleable.Toolbar_android_minHeight = global::xamarin_android.Resource.Styleable.Toolbar_android_minHeight;
- global::devolutions_crypto.Resource.Styleable.Toolbar_buttonGravity = global::xamarin_android.Resource.Styleable.Toolbar_buttonGravity;
- global::devolutions_crypto.Resource.Styleable.Toolbar_collapseContentDescription = global::xamarin_android.Resource.Styleable.Toolbar_collapseContentDescription;
- global::devolutions_crypto.Resource.Styleable.Toolbar_collapseIcon = global::xamarin_android.Resource.Styleable.Toolbar_collapseIcon;
- global::devolutions_crypto.Resource.Styleable.Toolbar_contentInsetEnd = global::xamarin_android.Resource.Styleable.Toolbar_contentInsetEnd;
- global::devolutions_crypto.Resource.Styleable.Toolbar_contentInsetEndWithActions = global::xamarin_android.Resource.Styleable.Toolbar_contentInsetEndWithActions;
- global::devolutions_crypto.Resource.Styleable.Toolbar_contentInsetLeft = global::xamarin_android.Resource.Styleable.Toolbar_contentInsetLeft;
- global::devolutions_crypto.Resource.Styleable.Toolbar_contentInsetRight = global::xamarin_android.Resource.Styleable.Toolbar_contentInsetRight;
- global::devolutions_crypto.Resource.Styleable.Toolbar_contentInsetStart = global::xamarin_android.Resource.Styleable.Toolbar_contentInsetStart;
- global::devolutions_crypto.Resource.Styleable.Toolbar_contentInsetStartWithNavigation = global::xamarin_android.Resource.Styleable.Toolbar_contentInsetStartWithNavigation;
- global::devolutions_crypto.Resource.Styleable.Toolbar_logo = global::xamarin_android.Resource.Styleable.Toolbar_logo;
- global::devolutions_crypto.Resource.Styleable.Toolbar_logoDescription = global::xamarin_android.Resource.Styleable.Toolbar_logoDescription;
- global::devolutions_crypto.Resource.Styleable.Toolbar_maxButtonHeight = global::xamarin_android.Resource.Styleable.Toolbar_maxButtonHeight;
- global::devolutions_crypto.Resource.Styleable.Toolbar_navigationContentDescription = global::xamarin_android.Resource.Styleable.Toolbar_navigationContentDescription;
- global::devolutions_crypto.Resource.Styleable.Toolbar_navigationIcon = global::xamarin_android.Resource.Styleable.Toolbar_navigationIcon;
- global::devolutions_crypto.Resource.Styleable.Toolbar_popupTheme = global::xamarin_android.Resource.Styleable.Toolbar_popupTheme;
- global::devolutions_crypto.Resource.Styleable.Toolbar_subtitle = global::xamarin_android.Resource.Styleable.Toolbar_subtitle;
- global::devolutions_crypto.Resource.Styleable.Toolbar_subtitleTextAppearance = global::xamarin_android.Resource.Styleable.Toolbar_subtitleTextAppearance;
- global::devolutions_crypto.Resource.Styleable.Toolbar_subtitleTextColor = global::xamarin_android.Resource.Styleable.Toolbar_subtitleTextColor;
- global::devolutions_crypto.Resource.Styleable.Toolbar_title = global::xamarin_android.Resource.Styleable.Toolbar_title;
- global::devolutions_crypto.Resource.Styleable.Toolbar_titleMargin = global::xamarin_android.Resource.Styleable.Toolbar_titleMargin;
- global::devolutions_crypto.Resource.Styleable.Toolbar_titleMarginBottom = global::xamarin_android.Resource.Styleable.Toolbar_titleMarginBottom;
- global::devolutions_crypto.Resource.Styleable.Toolbar_titleMarginEnd = global::xamarin_android.Resource.Styleable.Toolbar_titleMarginEnd;
- global::devolutions_crypto.Resource.Styleable.Toolbar_titleMargins = global::xamarin_android.Resource.Styleable.Toolbar_titleMargins;
- global::devolutions_crypto.Resource.Styleable.Toolbar_titleMarginStart = global::xamarin_android.Resource.Styleable.Toolbar_titleMarginStart;
- global::devolutions_crypto.Resource.Styleable.Toolbar_titleMarginTop = global::xamarin_android.Resource.Styleable.Toolbar_titleMarginTop;
- global::devolutions_crypto.Resource.Styleable.Toolbar_titleTextAppearance = global::xamarin_android.Resource.Styleable.Toolbar_titleTextAppearance;
- global::devolutions_crypto.Resource.Styleable.Toolbar_titleTextColor = global::xamarin_android.Resource.Styleable.Toolbar_titleTextColor;
- global::devolutions_crypto.Resource.Styleable.View = global::xamarin_android.Resource.Styleable.View;
- global::devolutions_crypto.Resource.Styleable.ViewBackgroundHelper = global::xamarin_android.Resource.Styleable.ViewBackgroundHelper;
- global::devolutions_crypto.Resource.Styleable.ViewBackgroundHelper_android_background = global::xamarin_android.Resource.Styleable.ViewBackgroundHelper_android_background;
- global::devolutions_crypto.Resource.Styleable.ViewBackgroundHelper_backgroundTint = global::xamarin_android.Resource.Styleable.ViewBackgroundHelper_backgroundTint;
- global::devolutions_crypto.Resource.Styleable.ViewBackgroundHelper_backgroundTintMode = global::xamarin_android.Resource.Styleable.ViewBackgroundHelper_backgroundTintMode;
- global::devolutions_crypto.Resource.Styleable.ViewStubCompat = global::xamarin_android.Resource.Styleable.ViewStubCompat;
- global::devolutions_crypto.Resource.Styleable.ViewStubCompat_android_id = global::xamarin_android.Resource.Styleable.ViewStubCompat_android_id;
- global::devolutions_crypto.Resource.Styleable.ViewStubCompat_android_inflatedId = global::xamarin_android.Resource.Styleable.ViewStubCompat_android_inflatedId;
- global::devolutions_crypto.Resource.Styleable.ViewStubCompat_android_layout = global::xamarin_android.Resource.Styleable.ViewStubCompat_android_layout;
- global::devolutions_crypto.Resource.Styleable.View_android_focusable = global::xamarin_android.Resource.Styleable.View_android_focusable;
- global::devolutions_crypto.Resource.Styleable.View_android_theme = global::xamarin_android.Resource.Styleable.View_android_theme;
- global::devolutions_crypto.Resource.Styleable.View_paddingEnd = global::xamarin_android.Resource.Styleable.View_paddingEnd;
- global::devolutions_crypto.Resource.Styleable.View_paddingStart = global::xamarin_android.Resource.Styleable.View_paddingStart;
- global::devolutions_crypto.Resource.Styleable.View_theme = global::xamarin_android.Resource.Styleable.View_theme;
- global::Xamarin.Android.NUnitLite.Resource.Id.CreditsButton = global::xamarin_android.Resource.Id.CreditsButton;
- global::Xamarin.Android.NUnitLite.Resource.Id.OptionHostName = global::xamarin_android.Resource.Id.OptionHostName;
- global::Xamarin.Android.NUnitLite.Resource.Id.OptionPort = global::xamarin_android.Resource.Id.OptionPort;
- global::Xamarin.Android.NUnitLite.Resource.Id.OptionRemoteServer = global::xamarin_android.Resource.Id.OptionRemoteServer;
- global::Xamarin.Android.NUnitLite.Resource.Id.OptionsButton = global::xamarin_android.Resource.Id.OptionsButton;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultFullName = global::xamarin_android.Resource.Id.ResultFullName;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultMessage = global::xamarin_android.Resource.Id.ResultMessage;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultResultState = global::xamarin_android.Resource.Id.ResultResultState;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultRunSingleMethodTest = global::xamarin_android.Resource.Id.ResultRunSingleMethodTest;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsFailed = global::xamarin_android.Resource.Id.ResultsFailed;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsId = global::xamarin_android.Resource.Id.ResultsId;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsIgnored = global::xamarin_android.Resource.Id.ResultsIgnored;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsInconclusive = global::xamarin_android.Resource.Id.ResultsInconclusive;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsMessage = global::xamarin_android.Resource.Id.ResultsMessage;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsPassed = global::xamarin_android.Resource.Id.ResultsPassed;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsResult = global::xamarin_android.Resource.Id.ResultsResult;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultStackTrace = global::xamarin_android.Resource.Id.ResultStackTrace;
- global::Xamarin.Android.NUnitLite.Resource.Id.RunEverythingButton = global::xamarin_android.Resource.Id.RunEverythingButton;
- global::Xamarin.Android.NUnitLite.Resource.Id.RunTestsButton = global::xamarin_android.Resource.Id.RunTestsButton;
- global::Xamarin.Android.NUnitLite.Resource.Id.TestSuiteListView = global::xamarin_android.Resource.Id.TestSuiteListView;
- global::Xamarin.Android.NUnitLite.Resource.Layout.options = global::xamarin_android.Resource.Layout.options;
- global::Xamarin.Android.NUnitLite.Resource.Layout.results = global::xamarin_android.Resource.Layout.results;
- global::Xamarin.Android.NUnitLite.Resource.Layout.Runner = global::xamarin_android.Resource.Layout.Runner;
- global::Xamarin.Android.NUnitLite.Resource.Layout.test_result = global::xamarin_android.Resource.Layout.test_result;
- global::Xamarin.Android.NUnitLite.Resource.Layout.test_suite = global::xamarin_android.Resource.Layout.test_suite;
- }
-
- public partial class Animation
- {
-
- // aapt resource value: 0x7F010000
- public const int abc_fade_in = 2130771968;
-
- // aapt resource value: 0x7F010001
- public const int abc_fade_out = 2130771969;
-
- // aapt resource value: 0x7F010002
- public const int abc_grow_fade_in_from_bottom = 2130771970;
-
- // aapt resource value: 0x7F010003
- public const int abc_popup_enter = 2130771971;
-
- // aapt resource value: 0x7F010004
- public const int abc_popup_exit = 2130771972;
-
- // aapt resource value: 0x7F010005
- public const int abc_shrink_fade_out_from_bottom = 2130771973;
-
- // aapt resource value: 0x7F010006
- public const int abc_slide_in_bottom = 2130771974;
-
- // aapt resource value: 0x7F010007
- public const int abc_slide_in_top = 2130771975;
-
- // aapt resource value: 0x7F010008
- public const int abc_slide_out_bottom = 2130771976;
-
- // aapt resource value: 0x7F010009
- public const int abc_slide_out_top = 2130771977;
-
- // aapt resource value: 0x7F01000A
- public const int abc_tooltip_enter = 2130771978;
-
- // aapt resource value: 0x7F01000B
- public const int abc_tooltip_exit = 2130771979;
-
- static Animation()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Animation()
- {
- }
- }
-
- public partial class Attribute
- {
-
- // aapt resource value: 0x7F020000
- public const int actionBarDivider = 2130837504;
-
- // aapt resource value: 0x7F020001
- public const int actionBarItemBackground = 2130837505;
-
- // aapt resource value: 0x7F020002
- public const int actionBarPopupTheme = 2130837506;
-
- // aapt resource value: 0x7F020003
- public const int actionBarSize = 2130837507;
-
- // aapt resource value: 0x7F020004
- public const int actionBarSplitStyle = 2130837508;
-
- // aapt resource value: 0x7F020005
- public const int actionBarStyle = 2130837509;
-
- // aapt resource value: 0x7F020006
- public const int actionBarTabBarStyle = 2130837510;
-
- // aapt resource value: 0x7F020007
- public const int actionBarTabStyle = 2130837511;
-
- // aapt resource value: 0x7F020008
- public const int actionBarTabTextStyle = 2130837512;
-
- // aapt resource value: 0x7F020009
- public const int actionBarTheme = 2130837513;
-
- // aapt resource value: 0x7F02000A
- public const int actionBarWidgetTheme = 2130837514;
-
- // aapt resource value: 0x7F02000B
- public const int actionButtonStyle = 2130837515;
-
- // aapt resource value: 0x7F02000C
- public const int actionDropDownStyle = 2130837516;
-
- // aapt resource value: 0x7F02000D
- public const int actionLayout = 2130837517;
-
- // aapt resource value: 0x7F02000E
- public const int actionMenuTextAppearance = 2130837518;
-
- // aapt resource value: 0x7F02000F
- public const int actionMenuTextColor = 2130837519;
-
- // aapt resource value: 0x7F020010
- public const int actionModeBackground = 2130837520;
-
- // aapt resource value: 0x7F020011
- public const int actionModeCloseButtonStyle = 2130837521;
-
- // aapt resource value: 0x7F020012
- public const int actionModeCloseDrawable = 2130837522;
-
- // aapt resource value: 0x7F020013
- public const int actionModeCopyDrawable = 2130837523;
-
- // aapt resource value: 0x7F020014
- public const int actionModeCutDrawable = 2130837524;
-
- // aapt resource value: 0x7F020015
- public const int actionModeFindDrawable = 2130837525;
-
- // aapt resource value: 0x7F020016
- public const int actionModePasteDrawable = 2130837526;
-
- // aapt resource value: 0x7F020017
- public const int actionModePopupWindowStyle = 2130837527;
-
- // aapt resource value: 0x7F020018
- public const int actionModeSelectAllDrawable = 2130837528;
-
- // aapt resource value: 0x7F020019
- public const int actionModeShareDrawable = 2130837529;
-
- // aapt resource value: 0x7F02001A
- public const int actionModeSplitBackground = 2130837530;
-
- // aapt resource value: 0x7F02001B
- public const int actionModeStyle = 2130837531;
-
- // aapt resource value: 0x7F02001C
- public const int actionModeWebSearchDrawable = 2130837532;
-
- // aapt resource value: 0x7F02001D
- public const int actionOverflowButtonStyle = 2130837533;
-
- // aapt resource value: 0x7F02001E
- public const int actionOverflowMenuStyle = 2130837534;
-
- // aapt resource value: 0x7F02001F
- public const int actionProviderClass = 2130837535;
-
- // aapt resource value: 0x7F020020
- public const int actionViewClass = 2130837536;
-
- // aapt resource value: 0x7F020021
- public const int activityChooserViewStyle = 2130837537;
-
- // aapt resource value: 0x7F020022
- public const int alertDialogButtonGroupStyle = 2130837538;
-
- // aapt resource value: 0x7F020023
- public const int alertDialogCenterButtons = 2130837539;
-
- // aapt resource value: 0x7F020024
- public const int alertDialogStyle = 2130837540;
-
- // aapt resource value: 0x7F020025
- public const int alertDialogTheme = 2130837541;
-
- // aapt resource value: 0x7F020026
- public const int allowStacking = 2130837542;
-
- // aapt resource value: 0x7F020027
- public const int alpha = 2130837543;
-
- // aapt resource value: 0x7F020028
- public const int alphabeticModifiers = 2130837544;
-
- // aapt resource value: 0x7F020029
- public const int arrowHeadLength = 2130837545;
-
- // aapt resource value: 0x7F02002A
- public const int arrowShaftLength = 2130837546;
-
- // aapt resource value: 0x7F02002B
- public const int autoCompleteTextViewStyle = 2130837547;
-
- // aapt resource value: 0x7F02002C
- public const int autoSizeMaxTextSize = 2130837548;
-
- // aapt resource value: 0x7F02002D
- public const int autoSizeMinTextSize = 2130837549;
-
- // aapt resource value: 0x7F02002E
- public const int autoSizePresetSizes = 2130837550;
-
- // aapt resource value: 0x7F02002F
- public const int autoSizeStepGranularity = 2130837551;
-
- // aapt resource value: 0x7F020030
- public const int autoSizeTextType = 2130837552;
-
- // aapt resource value: 0x7F020031
- public const int background = 2130837553;
-
- // aapt resource value: 0x7F020032
- public const int backgroundSplit = 2130837554;
-
- // aapt resource value: 0x7F020033
- public const int backgroundStacked = 2130837555;
-
- // aapt resource value: 0x7F020034
- public const int backgroundTint = 2130837556;
-
- // aapt resource value: 0x7F020035
- public const int backgroundTintMode = 2130837557;
-
- // aapt resource value: 0x7F020036
- public const int barLength = 2130837558;
-
- // aapt resource value: 0x7F020037
- public const int borderlessButtonStyle = 2130837559;
-
- // aapt resource value: 0x7F020038
- public const int buttonBarButtonStyle = 2130837560;
-
- // aapt resource value: 0x7F020039
- public const int buttonBarNegativeButtonStyle = 2130837561;
-
- // aapt resource value: 0x7F02003A
- public const int buttonBarNeutralButtonStyle = 2130837562;
-
- // aapt resource value: 0x7F02003B
- public const int buttonBarPositiveButtonStyle = 2130837563;
-
- // aapt resource value: 0x7F02003C
- public const int buttonBarStyle = 2130837564;
-
- // aapt resource value: 0x7F02003D
- public const int buttonGravity = 2130837565;
-
- // aapt resource value: 0x7F02003E
- public const int buttonIconDimen = 2130837566;
-
- // aapt resource value: 0x7F02003F
- public const int buttonPanelSideLayout = 2130837567;
-
- // aapt resource value: 0x7F020040
- public const int buttonStyle = 2130837568;
-
- // aapt resource value: 0x7F020041
- public const int buttonStyleSmall = 2130837569;
-
- // aapt resource value: 0x7F020042
- public const int buttonTint = 2130837570;
-
- // aapt resource value: 0x7F020043
- public const int buttonTintMode = 2130837571;
-
- // aapt resource value: 0x7F020044
- public const int checkboxStyle = 2130837572;
-
- // aapt resource value: 0x7F020045
- public const int checkedTextViewStyle = 2130837573;
-
- // aapt resource value: 0x7F020046
- public const int closeIcon = 2130837574;
-
- // aapt resource value: 0x7F020047
- public const int closeItemLayout = 2130837575;
-
- // aapt resource value: 0x7F020048
- public const int collapseContentDescription = 2130837576;
-
- // aapt resource value: 0x7F020049
- public const int collapseIcon = 2130837577;
-
- // aapt resource value: 0x7F02004A
- public const int color = 2130837578;
-
- // aapt resource value: 0x7F02004B
- public const int colorAccent = 2130837579;
-
- // aapt resource value: 0x7F02004C
- public const int colorBackgroundFloating = 2130837580;
-
- // aapt resource value: 0x7F02004D
- public const int colorButtonNormal = 2130837581;
-
- // aapt resource value: 0x7F02004E
- public const int colorControlActivated = 2130837582;
-
- // aapt resource value: 0x7F02004F
- public const int colorControlHighlight = 2130837583;
-
- // aapt resource value: 0x7F020050
- public const int colorControlNormal = 2130837584;
-
- // aapt resource value: 0x7F020051
- public const int colorError = 2130837585;
-
- // aapt resource value: 0x7F020052
- public const int colorPrimary = 2130837586;
-
- // aapt resource value: 0x7F020053
- public const int colorPrimaryDark = 2130837587;
-
- // aapt resource value: 0x7F020054
- public const int colorSwitchThumbNormal = 2130837588;
-
- // aapt resource value: 0x7F020055
- public const int commitIcon = 2130837589;
-
- // aapt resource value: 0x7F020056
- public const int contentDescription = 2130837590;
-
- // aapt resource value: 0x7F020057
- public const int contentInsetEnd = 2130837591;
-
- // aapt resource value: 0x7F020058
- public const int contentInsetEndWithActions = 2130837592;
-
- // aapt resource value: 0x7F020059
- public const int contentInsetLeft = 2130837593;
-
- // aapt resource value: 0x7F02005A
- public const int contentInsetRight = 2130837594;
-
- // aapt resource value: 0x7F02005B
- public const int contentInsetStart = 2130837595;
-
- // aapt resource value: 0x7F02005C
- public const int contentInsetStartWithNavigation = 2130837596;
-
- // aapt resource value: 0x7F02005D
- public const int controlBackground = 2130837597;
-
- // aapt resource value: 0x7F02005E
- public const int coordinatorLayoutStyle = 2130837598;
-
- // aapt resource value: 0x7F02005F
- public const int customNavigationLayout = 2130837599;
-
- // aapt resource value: 0x7F020060
- public const int defaultQueryHint = 2130837600;
-
- // aapt resource value: 0x7F020061
- public const int dialogCornerRadius = 2130837601;
-
- // aapt resource value: 0x7F020062
- public const int dialogPreferredPadding = 2130837602;
-
- // aapt resource value: 0x7F020063
- public const int dialogTheme = 2130837603;
-
- // aapt resource value: 0x7F020064
- public const int displayOptions = 2130837604;
-
- // aapt resource value: 0x7F020065
- public const int divider = 2130837605;
-
- // aapt resource value: 0x7F020066
- public const int dividerHorizontal = 2130837606;
-
- // aapt resource value: 0x7F020067
- public const int dividerPadding = 2130837607;
-
- // aapt resource value: 0x7F020068
- public const int dividerVertical = 2130837608;
-
- // aapt resource value: 0x7F020069
- public const int drawableSize = 2130837609;
-
- // aapt resource value: 0x7F02006A
- public const int drawerArrowStyle = 2130837610;
-
- // aapt resource value: 0x7F02006C
- public const int dropdownListPreferredItemHeight = 2130837612;
-
- // aapt resource value: 0x7F02006B
- public const int dropDownListViewStyle = 2130837611;
-
- // aapt resource value: 0x7F02006D
- public const int editTextBackground = 2130837613;
-
- // aapt resource value: 0x7F02006E
- public const int editTextColor = 2130837614;
-
- // aapt resource value: 0x7F02006F
- public const int editTextStyle = 2130837615;
-
- // aapt resource value: 0x7F020070
- public const int elevation = 2130837616;
-
- // aapt resource value: 0x7F020071
- public const int expandActivityOverflowButtonDrawable = 2130837617;
-
- // aapt resource value: 0x7F020072
- public const int firstBaselineToTopHeight = 2130837618;
-
- // aapt resource value: 0x7F020073
- public const int font = 2130837619;
-
- // aapt resource value: 0x7F020074
- public const int fontFamily = 2130837620;
-
- // aapt resource value: 0x7F020075
- public const int fontProviderAuthority = 2130837621;
-
- // aapt resource value: 0x7F020076
- public const int fontProviderCerts = 2130837622;
-
- // aapt resource value: 0x7F020077
- public const int fontProviderFetchStrategy = 2130837623;
-
- // aapt resource value: 0x7F020078
- public const int fontProviderFetchTimeout = 2130837624;
-
- // aapt resource value: 0x7F020079
- public const int fontProviderPackage = 2130837625;
-
- // aapt resource value: 0x7F02007A
- public const int fontProviderQuery = 2130837626;
-
- // aapt resource value: 0x7F02007B
- public const int fontStyle = 2130837627;
-
- // aapt resource value: 0x7F02007C
- public const int fontVariationSettings = 2130837628;
-
- // aapt resource value: 0x7F02007D
- public const int fontWeight = 2130837629;
-
- // aapt resource value: 0x7F02007E
- public const int gapBetweenBars = 2130837630;
-
- // aapt resource value: 0x7F02007F
- public const int goIcon = 2130837631;
-
- // aapt resource value: 0x7F020080
- public const int height = 2130837632;
-
- // aapt resource value: 0x7F020081
- public const int hideOnContentScroll = 2130837633;
-
- // aapt resource value: 0x7F020082
- public const int homeAsUpIndicator = 2130837634;
-
- // aapt resource value: 0x7F020083
- public const int homeLayout = 2130837635;
-
- // aapt resource value: 0x7F020084
- public const int icon = 2130837636;
-
- // aapt resource value: 0x7F020087
- public const int iconifiedByDefault = 2130837639;
-
- // aapt resource value: 0x7F020085
- public const int iconTint = 2130837637;
-
- // aapt resource value: 0x7F020086
- public const int iconTintMode = 2130837638;
-
- // aapt resource value: 0x7F020088
- public const int imageButtonStyle = 2130837640;
-
- // aapt resource value: 0x7F020089
- public const int indeterminateProgressStyle = 2130837641;
-
- // aapt resource value: 0x7F02008A
- public const int initialActivityCount = 2130837642;
-
- // aapt resource value: 0x7F02008B
- public const int isLightTheme = 2130837643;
-
- // aapt resource value: 0x7F02008C
- public const int itemPadding = 2130837644;
-
- // aapt resource value: 0x7F02008D
- public const int keylines = 2130837645;
-
- // aapt resource value: 0x7F02008E
- public const int lastBaselineToBottomHeight = 2130837646;
-
- // aapt resource value: 0x7F02008F
- public const int layout = 2130837647;
-
- // aapt resource value: 0x7F020090
- public const int layout_anchor = 2130837648;
-
- // aapt resource value: 0x7F020091
- public const int layout_anchorGravity = 2130837649;
-
- // aapt resource value: 0x7F020092
- public const int layout_behavior = 2130837650;
-
- // aapt resource value: 0x7F020093
- public const int layout_dodgeInsetEdges = 2130837651;
-
- // aapt resource value: 0x7F020094
- public const int layout_insetEdge = 2130837652;
-
- // aapt resource value: 0x7F020095
- public const int layout_keyline = 2130837653;
-
- // aapt resource value: 0x7F020096
- public const int lineHeight = 2130837654;
-
- // aapt resource value: 0x7F020097
- public const int listChoiceBackgroundIndicator = 2130837655;
-
- // aapt resource value: 0x7F020098
- public const int listDividerAlertDialog = 2130837656;
-
- // aapt resource value: 0x7F020099
- public const int listItemLayout = 2130837657;
-
- // aapt resource value: 0x7F02009A
- public const int listLayout = 2130837658;
-
- // aapt resource value: 0x7F02009B
- public const int listMenuViewStyle = 2130837659;
-
- // aapt resource value: 0x7F02009C
- public const int listPopupWindowStyle = 2130837660;
-
- // aapt resource value: 0x7F02009D
- public const int listPreferredItemHeight = 2130837661;
-
- // aapt resource value: 0x7F02009E
- public const int listPreferredItemHeightLarge = 2130837662;
-
- // aapt resource value: 0x7F02009F
- public const int listPreferredItemHeightSmall = 2130837663;
-
- // aapt resource value: 0x7F0200A0
- public const int listPreferredItemPaddingLeft = 2130837664;
-
- // aapt resource value: 0x7F0200A1
- public const int listPreferredItemPaddingRight = 2130837665;
-
- // aapt resource value: 0x7F0200A2
- public const int logo = 2130837666;
-
- // aapt resource value: 0x7F0200A3
- public const int logoDescription = 2130837667;
-
- // aapt resource value: 0x7F0200A4
- public const int maxButtonHeight = 2130837668;
-
- // aapt resource value: 0x7F0200A5
- public const int measureWithLargestChild = 2130837669;
-
- // aapt resource value: 0x7F0200A6
- public const int multiChoiceItemLayout = 2130837670;
-
- // aapt resource value: 0x7F0200A7
- public const int navigationContentDescription = 2130837671;
-
- // aapt resource value: 0x7F0200A8
- public const int navigationIcon = 2130837672;
-
- // aapt resource value: 0x7F0200A9
- public const int navigationMode = 2130837673;
-
- // aapt resource value: 0x7F0200AA
- public const int numericModifiers = 2130837674;
-
- // aapt resource value: 0x7F0200AB
- public const int overlapAnchor = 2130837675;
-
- // aapt resource value: 0x7F0200AC
- public const int paddingBottomNoButtons = 2130837676;
-
- // aapt resource value: 0x7F0200AD
- public const int paddingEnd = 2130837677;
-
- // aapt resource value: 0x7F0200AE
- public const int paddingStart = 2130837678;
-
- // aapt resource value: 0x7F0200AF
- public const int paddingTopNoTitle = 2130837679;
-
- // aapt resource value: 0x7F0200B0
- public const int panelBackground = 2130837680;
-
- // aapt resource value: 0x7F0200B1
- public const int panelMenuListTheme = 2130837681;
-
- // aapt resource value: 0x7F0200B2
- public const int panelMenuListWidth = 2130837682;
-
- // aapt resource value: 0x7F0200B3
- public const int popupMenuStyle = 2130837683;
-
- // aapt resource value: 0x7F0200B4
- public const int popupTheme = 2130837684;
-
- // aapt resource value: 0x7F0200B5
- public const int popupWindowStyle = 2130837685;
-
- // aapt resource value: 0x7F0200B6
- public const int preserveIconSpacing = 2130837686;
-
- // aapt resource value: 0x7F0200B7
- public const int progressBarPadding = 2130837687;
-
- // aapt resource value: 0x7F0200B8
- public const int progressBarStyle = 2130837688;
-
- // aapt resource value: 0x7F0200B9
- public const int queryBackground = 2130837689;
-
- // aapt resource value: 0x7F0200BA
- public const int queryHint = 2130837690;
-
- // aapt resource value: 0x7F0200BB
- public const int radioButtonStyle = 2130837691;
-
- // aapt resource value: 0x7F0200BC
- public const int ratingBarStyle = 2130837692;
-
- // aapt resource value: 0x7F0200BD
- public const int ratingBarStyleIndicator = 2130837693;
-
- // aapt resource value: 0x7F0200BE
- public const int ratingBarStyleSmall = 2130837694;
-
- // aapt resource value: 0x7F0200BF
- public const int searchHintIcon = 2130837695;
-
- // aapt resource value: 0x7F0200C0
- public const int searchIcon = 2130837696;
-
- // aapt resource value: 0x7F0200C1
- public const int searchViewStyle = 2130837697;
-
- // aapt resource value: 0x7F0200C2
- public const int seekBarStyle = 2130837698;
-
- // aapt resource value: 0x7F0200C3
- public const int selectableItemBackground = 2130837699;
-
- // aapt resource value: 0x7F0200C4
- public const int selectableItemBackgroundBorderless = 2130837700;
-
- // aapt resource value: 0x7F0200C5
- public const int showAsAction = 2130837701;
-
- // aapt resource value: 0x7F0200C6
- public const int showDividers = 2130837702;
-
- // aapt resource value: 0x7F0200C7
- public const int showText = 2130837703;
-
- // aapt resource value: 0x7F0200C8
- public const int showTitle = 2130837704;
-
- // aapt resource value: 0x7F0200C9
- public const int singleChoiceItemLayout = 2130837705;
-
- // aapt resource value: 0x7F0200CA
- public const int spinBars = 2130837706;
-
- // aapt resource value: 0x7F0200CB
- public const int spinnerDropDownItemStyle = 2130837707;
-
- // aapt resource value: 0x7F0200CC
- public const int spinnerStyle = 2130837708;
-
- // aapt resource value: 0x7F0200CD
- public const int splitTrack = 2130837709;
-
- // aapt resource value: 0x7F0200CE
- public const int srcCompat = 2130837710;
-
- // aapt resource value: 0x7F0200CF
- public const int state_above_anchor = 2130837711;
-
- // aapt resource value: 0x7F0200D0
- public const int statusBarBackground = 2130837712;
-
- // aapt resource value: 0x7F0200D1
- public const int subMenuArrow = 2130837713;
-
- // aapt resource value: 0x7F0200D2
- public const int submitBackground = 2130837714;
-
- // aapt resource value: 0x7F0200D3
- public const int subtitle = 2130837715;
-
- // aapt resource value: 0x7F0200D4
- public const int subtitleTextAppearance = 2130837716;
-
- // aapt resource value: 0x7F0200D5
- public const int subtitleTextColor = 2130837717;
-
- // aapt resource value: 0x7F0200D6
- public const int subtitleTextStyle = 2130837718;
-
- // aapt resource value: 0x7F0200D7
- public const int suggestionRowLayout = 2130837719;
-
- // aapt resource value: 0x7F0200D8
- public const int switchMinWidth = 2130837720;
-
- // aapt resource value: 0x7F0200D9
- public const int switchPadding = 2130837721;
-
- // aapt resource value: 0x7F0200DA
- public const int switchStyle = 2130837722;
-
- // aapt resource value: 0x7F0200DB
- public const int switchTextAppearance = 2130837723;
-
- // aapt resource value: 0x7F0200DC
- public const int textAllCaps = 2130837724;
-
- // aapt resource value: 0x7F0200DD
- public const int textAppearanceLargePopupMenu = 2130837725;
-
- // aapt resource value: 0x7F0200DE
- public const int textAppearanceListItem = 2130837726;
-
- // aapt resource value: 0x7F0200DF
- public const int textAppearanceListItemSecondary = 2130837727;
-
- // aapt resource value: 0x7F0200E0
- public const int textAppearanceListItemSmall = 2130837728;
-
- // aapt resource value: 0x7F0200E1
- public const int textAppearancePopupMenuHeader = 2130837729;
-
- // aapt resource value: 0x7F0200E2
- public const int textAppearanceSearchResultSubtitle = 2130837730;
-
- // aapt resource value: 0x7F0200E3
- public const int textAppearanceSearchResultTitle = 2130837731;
-
- // aapt resource value: 0x7F0200E4
- public const int textAppearanceSmallPopupMenu = 2130837732;
-
- // aapt resource value: 0x7F0200E5
- public const int textColorAlertDialogListItem = 2130837733;
-
- // aapt resource value: 0x7F0200E6
- public const int textColorSearchUrl = 2130837734;
-
- // aapt resource value: 0x7F0200E7
- public const int theme = 2130837735;
-
- // aapt resource value: 0x7F0200E8
- public const int thickness = 2130837736;
-
- // aapt resource value: 0x7F0200E9
- public const int thumbTextPadding = 2130837737;
-
- // aapt resource value: 0x7F0200EA
- public const int thumbTint = 2130837738;
-
- // aapt resource value: 0x7F0200EB
- public const int thumbTintMode = 2130837739;
-
- // aapt resource value: 0x7F0200EC
- public const int tickMark = 2130837740;
-
- // aapt resource value: 0x7F0200ED
- public const int tickMarkTint = 2130837741;
-
- // aapt resource value: 0x7F0200EE
- public const int tickMarkTintMode = 2130837742;
-
- // aapt resource value: 0x7F0200EF
- public const int tint = 2130837743;
-
- // aapt resource value: 0x7F0200F0
- public const int tintMode = 2130837744;
-
- // aapt resource value: 0x7F0200F1
- public const int title = 2130837745;
-
- // aapt resource value: 0x7F0200F2
- public const int titleMargin = 2130837746;
-
- // aapt resource value: 0x7F0200F3
- public const int titleMarginBottom = 2130837747;
-
- // aapt resource value: 0x7F0200F4
- public const int titleMarginEnd = 2130837748;
-
- // aapt resource value: 0x7F0200F7
- public const int titleMargins = 2130837751;
-
- // aapt resource value: 0x7F0200F5
- public const int titleMarginStart = 2130837749;
-
- // aapt resource value: 0x7F0200F6
- public const int titleMarginTop = 2130837750;
-
- // aapt resource value: 0x7F0200F8
- public const int titleTextAppearance = 2130837752;
-
- // aapt resource value: 0x7F0200F9
- public const int titleTextColor = 2130837753;
-
- // aapt resource value: 0x7F0200FA
- public const int titleTextStyle = 2130837754;
-
- // aapt resource value: 0x7F0200FB
- public const int toolbarNavigationButtonStyle = 2130837755;
-
- // aapt resource value: 0x7F0200FC
- public const int toolbarStyle = 2130837756;
-
- // aapt resource value: 0x7F0200FD
- public const int tooltipForegroundColor = 2130837757;
-
- // aapt resource value: 0x7F0200FE
- public const int tooltipFrameBackground = 2130837758;
-
- // aapt resource value: 0x7F0200FF
- public const int tooltipText = 2130837759;
-
- // aapt resource value: 0x7F020100
- public const int track = 2130837760;
-
- // aapt resource value: 0x7F020101
- public const int trackTint = 2130837761;
-
- // aapt resource value: 0x7F020102
- public const int trackTintMode = 2130837762;
-
- // aapt resource value: 0x7F020103
- public const int ttcIndex = 2130837763;
-
- // aapt resource value: 0x7F020104
- public const int viewInflaterClass = 2130837764;
-
- // aapt resource value: 0x7F020105
- public const int voiceIcon = 2130837765;
-
- // aapt resource value: 0x7F020106
- public const int windowActionBar = 2130837766;
-
- // aapt resource value: 0x7F020107
- public const int windowActionBarOverlay = 2130837767;
-
- // aapt resource value: 0x7F020108
- public const int windowActionModeOverlay = 2130837768;
-
- // aapt resource value: 0x7F020109
- public const int windowFixedHeightMajor = 2130837769;
-
- // aapt resource value: 0x7F02010A
- public const int windowFixedHeightMinor = 2130837770;
-
- // aapt resource value: 0x7F02010B
- public const int windowFixedWidthMajor = 2130837771;
-
- // aapt resource value: 0x7F02010C
- public const int windowFixedWidthMinor = 2130837772;
-
- // aapt resource value: 0x7F02010D
- public const int windowMinWidthMajor = 2130837773;
-
- // aapt resource value: 0x7F02010E
- public const int windowMinWidthMinor = 2130837774;
-
- // aapt resource value: 0x7F02010F
- public const int windowNoTitle = 2130837775;
-
- static Attribute()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Attribute()
- {
- }
- }
-
- public partial class Boolean
- {
-
- // aapt resource value: 0x7F030000
- public const int abc_action_bar_embed_tabs = 2130903040;
-
- // aapt resource value: 0x7F030001
- public const int abc_allow_stacked_button_bar = 2130903041;
-
- // aapt resource value: 0x7F030002
- public const int abc_config_actionMenuItemAllCaps = 2130903042;
-
- static Boolean()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Boolean()
- {
- }
- }
-
- public partial class Color
- {
-
- // aapt resource value: 0x7F040000
- public const int abc_background_cache_hint_selector_material_dark = 2130968576;
-
- // aapt resource value: 0x7F040001
- public const int abc_background_cache_hint_selector_material_light = 2130968577;
-
- // aapt resource value: 0x7F040002
- public const int abc_btn_colored_borderless_text_material = 2130968578;
-
- // aapt resource value: 0x7F040003
- public const int abc_btn_colored_text_material = 2130968579;
-
- // aapt resource value: 0x7F040004
- public const int abc_color_highlight_material = 2130968580;
-
- // aapt resource value: 0x7F040005
- public const int abc_hint_foreground_material_dark = 2130968581;
-
- // aapt resource value: 0x7F040006
- public const int abc_hint_foreground_material_light = 2130968582;
-
- // aapt resource value: 0x7F040007
- public const int abc_input_method_navigation_guard = 2130968583;
-
- // aapt resource value: 0x7F040008
- public const int abc_primary_text_disable_only_material_dark = 2130968584;
-
- // aapt resource value: 0x7F040009
- public const int abc_primary_text_disable_only_material_light = 2130968585;
-
- // aapt resource value: 0x7F04000A
- public const int abc_primary_text_material_dark = 2130968586;
-
- // aapt resource value: 0x7F04000B
- public const int abc_primary_text_material_light = 2130968587;
-
- // aapt resource value: 0x7F04000C
- public const int abc_search_url_text = 2130968588;
-
- // aapt resource value: 0x7F04000D
- public const int abc_search_url_text_normal = 2130968589;
-
- // aapt resource value: 0x7F04000E
- public const int abc_search_url_text_pressed = 2130968590;
-
- // aapt resource value: 0x7F04000F
- public const int abc_search_url_text_selected = 2130968591;
-
- // aapt resource value: 0x7F040010
- public const int abc_secondary_text_material_dark = 2130968592;
-
- // aapt resource value: 0x7F040011
- public const int abc_secondary_text_material_light = 2130968593;
-
- // aapt resource value: 0x7F040012
- public const int abc_tint_btn_checkable = 2130968594;
-
- // aapt resource value: 0x7F040013
- public const int abc_tint_default = 2130968595;
-
- // aapt resource value: 0x7F040014
- public const int abc_tint_edittext = 2130968596;
-
- // aapt resource value: 0x7F040015
- public const int abc_tint_seek_thumb = 2130968597;
-
- // aapt resource value: 0x7F040016
- public const int abc_tint_spinner = 2130968598;
-
- // aapt resource value: 0x7F040017
- public const int abc_tint_switch_track = 2130968599;
-
- // aapt resource value: 0x7F040018
- public const int accent_material_dark = 2130968600;
-
- // aapt resource value: 0x7F040019
- public const int accent_material_light = 2130968601;
-
- // aapt resource value: 0x7F04001A
- public const int background_floating_material_dark = 2130968602;
-
- // aapt resource value: 0x7F04001B
- public const int background_floating_material_light = 2130968603;
-
- // aapt resource value: 0x7F04001C
- public const int background_material_dark = 2130968604;
-
- // aapt resource value: 0x7F04001D
- public const int background_material_light = 2130968605;
-
- // aapt resource value: 0x7F04001E
- public const int bright_foreground_disabled_material_dark = 2130968606;
-
- // aapt resource value: 0x7F04001F
- public const int bright_foreground_disabled_material_light = 2130968607;
-
- // aapt resource value: 0x7F040020
- public const int bright_foreground_inverse_material_dark = 2130968608;
-
- // aapt resource value: 0x7F040021
- public const int bright_foreground_inverse_material_light = 2130968609;
-
- // aapt resource value: 0x7F040022
- public const int bright_foreground_material_dark = 2130968610;
-
- // aapt resource value: 0x7F040023
- public const int bright_foreground_material_light = 2130968611;
-
- // aapt resource value: 0x7F040024
- public const int button_material_dark = 2130968612;
-
- // aapt resource value: 0x7F040025
- public const int button_material_light = 2130968613;
-
- // aapt resource value: 0x7F040026
- public const int dim_foreground_disabled_material_dark = 2130968614;
-
- // aapt resource value: 0x7F040027
- public const int dim_foreground_disabled_material_light = 2130968615;
-
- // aapt resource value: 0x7F040028
- public const int dim_foreground_material_dark = 2130968616;
-
- // aapt resource value: 0x7F040029
- public const int dim_foreground_material_light = 2130968617;
-
- // aapt resource value: 0x7F04002A
- public const int error_color_material_dark = 2130968618;
-
- // aapt resource value: 0x7F04002B
- public const int error_color_material_light = 2130968619;
-
- // aapt resource value: 0x7F04002C
- public const int foreground_material_dark = 2130968620;
-
- // aapt resource value: 0x7F04002D
- public const int foreground_material_light = 2130968621;
-
- // aapt resource value: 0x7F04002E
- public const int highlighted_text_material_dark = 2130968622;
-
- // aapt resource value: 0x7F04002F
- public const int highlighted_text_material_light = 2130968623;
-
- // aapt resource value: 0x7F040030
- public const int material_blue_grey_800 = 2130968624;
-
- // aapt resource value: 0x7F040031
- public const int material_blue_grey_900 = 2130968625;
-
- // aapt resource value: 0x7F040032
- public const int material_blue_grey_950 = 2130968626;
-
- // aapt resource value: 0x7F040033
- public const int material_deep_teal_200 = 2130968627;
-
- // aapt resource value: 0x7F040034
- public const int material_deep_teal_500 = 2130968628;
-
- // aapt resource value: 0x7F040035
- public const int material_grey_100 = 2130968629;
-
- // aapt resource value: 0x7F040036
- public const int material_grey_300 = 2130968630;
-
- // aapt resource value: 0x7F040037
- public const int material_grey_50 = 2130968631;
-
- // aapt resource value: 0x7F040038
- public const int material_grey_600 = 2130968632;
-
- // aapt resource value: 0x7F040039
- public const int material_grey_800 = 2130968633;
-
- // aapt resource value: 0x7F04003A
- public const int material_grey_850 = 2130968634;
-
- // aapt resource value: 0x7F04003B
- public const int material_grey_900 = 2130968635;
-
- // aapt resource value: 0x7F04003C
- public const int notification_action_color_filter = 2130968636;
-
- // aapt resource value: 0x7F04003D
- public const int notification_icon_bg_color = 2130968637;
-
- // aapt resource value: 0x7F04003E
- public const int primary_dark_material_dark = 2130968638;
-
- // aapt resource value: 0x7F04003F
- public const int primary_dark_material_light = 2130968639;
-
- // aapt resource value: 0x7F040040
- public const int primary_material_dark = 2130968640;
-
- // aapt resource value: 0x7F040041
- public const int primary_material_light = 2130968641;
-
- // aapt resource value: 0x7F040042
- public const int primary_text_default_material_dark = 2130968642;
-
- // aapt resource value: 0x7F040043
- public const int primary_text_default_material_light = 2130968643;
-
- // aapt resource value: 0x7F040044
- public const int primary_text_disabled_material_dark = 2130968644;
-
- // aapt resource value: 0x7F040045
- public const int primary_text_disabled_material_light = 2130968645;
-
- // aapt resource value: 0x7F040046
- public const int ripple_material_dark = 2130968646;
-
- // aapt resource value: 0x7F040047
- public const int ripple_material_light = 2130968647;
-
- // aapt resource value: 0x7F040048
- public const int secondary_text_default_material_dark = 2130968648;
-
- // aapt resource value: 0x7F040049
- public const int secondary_text_default_material_light = 2130968649;
-
- // aapt resource value: 0x7F04004A
- public const int secondary_text_disabled_material_dark = 2130968650;
-
- // aapt resource value: 0x7F04004B
- public const int secondary_text_disabled_material_light = 2130968651;
-
- // aapt resource value: 0x7F04004C
- public const int switch_thumb_disabled_material_dark = 2130968652;
-
- // aapt resource value: 0x7F04004D
- public const int switch_thumb_disabled_material_light = 2130968653;
-
- // aapt resource value: 0x7F04004E
- public const int switch_thumb_material_dark = 2130968654;
-
- // aapt resource value: 0x7F04004F
- public const int switch_thumb_material_light = 2130968655;
-
- // aapt resource value: 0x7F040050
- public const int switch_thumb_normal_material_dark = 2130968656;
-
- // aapt resource value: 0x7F040051
- public const int switch_thumb_normal_material_light = 2130968657;
-
- // aapt resource value: 0x7F040052
- public const int tooltip_background_dark = 2130968658;
-
- // aapt resource value: 0x7F040053
- public const int tooltip_background_light = 2130968659;
-
- static Color()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Color()
- {
- }
- }
-
- public partial class Dimension
- {
-
- // aapt resource value: 0x7F050000
- public const int abc_action_bar_content_inset_material = 2131034112;
-
- // aapt resource value: 0x7F050001
- public const int abc_action_bar_content_inset_with_nav = 2131034113;
-
- // aapt resource value: 0x7F050002
- public const int abc_action_bar_default_height_material = 2131034114;
-
- // aapt resource value: 0x7F050003
- public const int abc_action_bar_default_padding_end_material = 2131034115;
-
- // aapt resource value: 0x7F050004
- public const int abc_action_bar_default_padding_start_material = 2131034116;
-
- // aapt resource value: 0x7F050005
- public const int abc_action_bar_elevation_material = 2131034117;
-
- // aapt resource value: 0x7F050006
- public const int abc_action_bar_icon_vertical_padding_material = 2131034118;
-
- // aapt resource value: 0x7F050007
- public const int abc_action_bar_overflow_padding_end_material = 2131034119;
-
- // aapt resource value: 0x7F050008
- public const int abc_action_bar_overflow_padding_start_material = 2131034120;
-
- // aapt resource value: 0x7F050009
- public const int abc_action_bar_stacked_max_height = 2131034121;
-
- // aapt resource value: 0x7F05000A
- public const int abc_action_bar_stacked_tab_max_width = 2131034122;
-
- // aapt resource value: 0x7F05000B
- public const int abc_action_bar_subtitle_bottom_margin_material = 2131034123;
-
- // aapt resource value: 0x7F05000C
- public const int abc_action_bar_subtitle_top_margin_material = 2131034124;
-
- // aapt resource value: 0x7F05000D
- public const int abc_action_button_min_height_material = 2131034125;
-
- // aapt resource value: 0x7F05000E
- public const int abc_action_button_min_width_material = 2131034126;
-
- // aapt resource value: 0x7F05000F
- public const int abc_action_button_min_width_overflow_material = 2131034127;
-
- // aapt resource value: 0x7F050010
- public const int abc_alert_dialog_button_bar_height = 2131034128;
-
- // aapt resource value: 0x7F050011
- public const int abc_alert_dialog_button_dimen = 2131034129;
-
- // aapt resource value: 0x7F050012
- public const int abc_button_inset_horizontal_material = 2131034130;
-
- // aapt resource value: 0x7F050013
- public const int abc_button_inset_vertical_material = 2131034131;
-
- // aapt resource value: 0x7F050014
- public const int abc_button_padding_horizontal_material = 2131034132;
-
- // aapt resource value: 0x7F050015
- public const int abc_button_padding_vertical_material = 2131034133;
-
- // aapt resource value: 0x7F050016
- public const int abc_cascading_menus_min_smallest_width = 2131034134;
-
- // aapt resource value: 0x7F050017
- public const int abc_config_prefDialogWidth = 2131034135;
-
- // aapt resource value: 0x7F050018
- public const int abc_control_corner_material = 2131034136;
-
- // aapt resource value: 0x7F050019
- public const int abc_control_inset_material = 2131034137;
-
- // aapt resource value: 0x7F05001A
- public const int abc_control_padding_material = 2131034138;
-
- // aapt resource value: 0x7F05001B
- public const int abc_dialog_corner_radius_material = 2131034139;
-
- // aapt resource value: 0x7F05001C
- public const int abc_dialog_fixed_height_major = 2131034140;
-
- // aapt resource value: 0x7F05001D
- public const int abc_dialog_fixed_height_minor = 2131034141;
-
- // aapt resource value: 0x7F05001E
- public const int abc_dialog_fixed_width_major = 2131034142;
-
- // aapt resource value: 0x7F05001F
- public const int abc_dialog_fixed_width_minor = 2131034143;
-
- // aapt resource value: 0x7F050020
- public const int abc_dialog_list_padding_bottom_no_buttons = 2131034144;
-
- // aapt resource value: 0x7F050021
- public const int abc_dialog_list_padding_top_no_title = 2131034145;
-
- // aapt resource value: 0x7F050022
- public const int abc_dialog_min_width_major = 2131034146;
-
- // aapt resource value: 0x7F050023
- public const int abc_dialog_min_width_minor = 2131034147;
-
- // aapt resource value: 0x7F050024
- public const int abc_dialog_padding_material = 2131034148;
-
- // aapt resource value: 0x7F050025
- public const int abc_dialog_padding_top_material = 2131034149;
-
- // aapt resource value: 0x7F050026
- public const int abc_dialog_title_divider_material = 2131034150;
-
- // aapt resource value: 0x7F050027
- public const int abc_disabled_alpha_material_dark = 2131034151;
-
- // aapt resource value: 0x7F050028
- public const int abc_disabled_alpha_material_light = 2131034152;
-
- // aapt resource value: 0x7F050029
- public const int abc_dropdownitem_icon_width = 2131034153;
-
- // aapt resource value: 0x7F05002A
- public const int abc_dropdownitem_text_padding_left = 2131034154;
-
- // aapt resource value: 0x7F05002B
- public const int abc_dropdownitem_text_padding_right = 2131034155;
-
- // aapt resource value: 0x7F05002C
- public const int abc_edit_text_inset_bottom_material = 2131034156;
-
- // aapt resource value: 0x7F05002D
- public const int abc_edit_text_inset_horizontal_material = 2131034157;
-
- // aapt resource value: 0x7F05002E
- public const int abc_edit_text_inset_top_material = 2131034158;
-
- // aapt resource value: 0x7F05002F
- public const int abc_floating_window_z = 2131034159;
-
- // aapt resource value: 0x7F050030
- public const int abc_list_item_padding_horizontal_material = 2131034160;
-
- // aapt resource value: 0x7F050031
- public const int abc_panel_menu_list_width = 2131034161;
-
- // aapt resource value: 0x7F050032
- public const int abc_progress_bar_height_material = 2131034162;
-
- // aapt resource value: 0x7F050033
- public const int abc_search_view_preferred_height = 2131034163;
-
- // aapt resource value: 0x7F050034
- public const int abc_search_view_preferred_width = 2131034164;
-
- // aapt resource value: 0x7F050035
- public const int abc_seekbar_track_background_height_material = 2131034165;
-
- // aapt resource value: 0x7F050036
- public const int abc_seekbar_track_progress_height_material = 2131034166;
-
- // aapt resource value: 0x7F050037
- public const int abc_select_dialog_padding_start_material = 2131034167;
-
- // aapt resource value: 0x7F050038
- public const int abc_switch_padding = 2131034168;
-
- // aapt resource value: 0x7F050039
- public const int abc_text_size_body_1_material = 2131034169;
-
- // aapt resource value: 0x7F05003A
- public const int abc_text_size_body_2_material = 2131034170;
-
- // aapt resource value: 0x7F05003B
- public const int abc_text_size_button_material = 2131034171;
-
- // aapt resource value: 0x7F05003C
- public const int abc_text_size_caption_material = 2131034172;
-
- // aapt resource value: 0x7F05003D
- public const int abc_text_size_display_1_material = 2131034173;
-
- // aapt resource value: 0x7F05003E
- public const int abc_text_size_display_2_material = 2131034174;
-
- // aapt resource value: 0x7F05003F
- public const int abc_text_size_display_3_material = 2131034175;
-
- // aapt resource value: 0x7F050040
- public const int abc_text_size_display_4_material = 2131034176;
-
- // aapt resource value: 0x7F050041
- public const int abc_text_size_headline_material = 2131034177;
-
- // aapt resource value: 0x7F050042
- public const int abc_text_size_large_material = 2131034178;
-
- // aapt resource value: 0x7F050043
- public const int abc_text_size_medium_material = 2131034179;
-
- // aapt resource value: 0x7F050044
- public const int abc_text_size_menu_header_material = 2131034180;
-
- // aapt resource value: 0x7F050045
- public const int abc_text_size_menu_material = 2131034181;
-
- // aapt resource value: 0x7F050046
- public const int abc_text_size_small_material = 2131034182;
-
- // aapt resource value: 0x7F050047
- public const int abc_text_size_subhead_material = 2131034183;
-
- // aapt resource value: 0x7F050048
- public const int abc_text_size_subtitle_material_toolbar = 2131034184;
-
- // aapt resource value: 0x7F050049
- public const int abc_text_size_title_material = 2131034185;
-
- // aapt resource value: 0x7F05004A
- public const int abc_text_size_title_material_toolbar = 2131034186;
-
- // aapt resource value: 0x7F05004B
- public const int compat_button_inset_horizontal_material = 2131034187;
-
- // aapt resource value: 0x7F05004C
- public const int compat_button_inset_vertical_material = 2131034188;
-
- // aapt resource value: 0x7F05004D
- public const int compat_button_padding_horizontal_material = 2131034189;
-
- // aapt resource value: 0x7F05004E
- public const int compat_button_padding_vertical_material = 2131034190;
-
- // aapt resource value: 0x7F05004F
- public const int compat_control_corner_material = 2131034191;
-
- // aapt resource value: 0x7F050050
- public const int compat_notification_large_icon_max_height = 2131034192;
-
- // aapt resource value: 0x7F050051
- public const int compat_notification_large_icon_max_width = 2131034193;
-
- // aapt resource value: 0x7F050052
- public const int disabled_alpha_material_dark = 2131034194;
-
- // aapt resource value: 0x7F050053
- public const int disabled_alpha_material_light = 2131034195;
-
- // aapt resource value: 0x7F050054
- public const int highlight_alpha_material_colored = 2131034196;
-
- // aapt resource value: 0x7F050055
- public const int highlight_alpha_material_dark = 2131034197;
-
- // aapt resource value: 0x7F050056
- public const int highlight_alpha_material_light = 2131034198;
-
- // aapt resource value: 0x7F050057
- public const int hint_alpha_material_dark = 2131034199;
-
- // aapt resource value: 0x7F050058
- public const int hint_alpha_material_light = 2131034200;
-
- // aapt resource value: 0x7F050059
- public const int hint_pressed_alpha_material_dark = 2131034201;
-
- // aapt resource value: 0x7F05005A
- public const int hint_pressed_alpha_material_light = 2131034202;
-
- // aapt resource value: 0x7F05005B
- public const int notification_action_icon_size = 2131034203;
-
- // aapt resource value: 0x7F05005C
- public const int notification_action_text_size = 2131034204;
-
- // aapt resource value: 0x7F05005D
- public const int notification_big_circle_margin = 2131034205;
-
- // aapt resource value: 0x7F05005E
- public const int notification_content_margin_start = 2131034206;
-
- // aapt resource value: 0x7F05005F
- public const int notification_large_icon_height = 2131034207;
-
- // aapt resource value: 0x7F050060
- public const int notification_large_icon_width = 2131034208;
-
- // aapt resource value: 0x7F050061
- public const int notification_main_column_padding_top = 2131034209;
-
- // aapt resource value: 0x7F050062
- public const int notification_media_narrow_margin = 2131034210;
-
- // aapt resource value: 0x7F050063
- public const int notification_right_icon_size = 2131034211;
-
- // aapt resource value: 0x7F050064
- public const int notification_right_side_padding_top = 2131034212;
-
- // aapt resource value: 0x7F050065
- public const int notification_small_icon_background_padding = 2131034213;
-
- // aapt resource value: 0x7F050066
- public const int notification_small_icon_size_as_large = 2131034214;
-
- // aapt resource value: 0x7F050067
- public const int notification_subtext_size = 2131034215;
-
- // aapt resource value: 0x7F050068
- public const int notification_top_pad = 2131034216;
-
- // aapt resource value: 0x7F050069
- public const int notification_top_pad_large_text = 2131034217;
-
- // aapt resource value: 0x7F05006A
- public const int tooltip_corner_radius = 2131034218;
-
- // aapt resource value: 0x7F05006B
- public const int tooltip_horizontal_padding = 2131034219;
-
- // aapt resource value: 0x7F05006C
- public const int tooltip_margin = 2131034220;
-
- // aapt resource value: 0x7F05006D
- public const int tooltip_precise_anchor_extra_offset = 2131034221;
-
- // aapt resource value: 0x7F05006E
- public const int tooltip_precise_anchor_threshold = 2131034222;
-
- // aapt resource value: 0x7F05006F
- public const int tooltip_vertical_padding = 2131034223;
-
- // aapt resource value: 0x7F050070
- public const int tooltip_y_offset_non_touch = 2131034224;
-
- // aapt resource value: 0x7F050071
- public const int tooltip_y_offset_touch = 2131034225;
-
- static Dimension()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Dimension()
- {
- }
- }
-
- public partial class Drawable
- {
-
- // aapt resource value: 0x7F060000
- public const int abc_ab_share_pack_mtrl_alpha = 2131099648;
-
- // aapt resource value: 0x7F060001
- public const int abc_action_bar_item_background_material = 2131099649;
-
- // aapt resource value: 0x7F060002
- public const int abc_btn_borderless_material = 2131099650;
-
- // aapt resource value: 0x7F060003
- public const int abc_btn_check_material = 2131099651;
-
- // aapt resource value: 0x7F060004
- public const int abc_btn_check_to_on_mtrl_000 = 2131099652;
-
- // aapt resource value: 0x7F060005
- public const int abc_btn_check_to_on_mtrl_015 = 2131099653;
-
- // aapt resource value: 0x7F060006
- public const int abc_btn_colored_material = 2131099654;
-
- // aapt resource value: 0x7F060007
- public const int abc_btn_default_mtrl_shape = 2131099655;
-
- // aapt resource value: 0x7F060008
- public const int abc_btn_radio_material = 2131099656;
-
- // aapt resource value: 0x7F060009
- public const int abc_btn_radio_to_on_mtrl_000 = 2131099657;
-
- // aapt resource value: 0x7F06000A
- public const int abc_btn_radio_to_on_mtrl_015 = 2131099658;
-
- // aapt resource value: 0x7F06000B
- public const int abc_btn_switch_to_on_mtrl_00001 = 2131099659;
-
- // aapt resource value: 0x7F06000C
- public const int abc_btn_switch_to_on_mtrl_00012 = 2131099660;
-
- // aapt resource value: 0x7F06000D
- public const int abc_cab_background_internal_bg = 2131099661;
-
- // aapt resource value: 0x7F06000E
- public const int abc_cab_background_top_material = 2131099662;
-
- // aapt resource value: 0x7F06000F
- public const int abc_cab_background_top_mtrl_alpha = 2131099663;
-
- // aapt resource value: 0x7F060010
- public const int abc_control_background_material = 2131099664;
-
- // aapt resource value: 0x7F060011
- public const int abc_dialog_material_background = 2131099665;
-
- // aapt resource value: 0x7F060012
- public const int abc_edit_text_material = 2131099666;
-
- // aapt resource value: 0x7F060013
- public const int abc_ic_ab_back_material = 2131099667;
-
- // aapt resource value: 0x7F060014
- public const int abc_ic_arrow_drop_right_black_24dp = 2131099668;
-
- // aapt resource value: 0x7F060015
- public const int abc_ic_clear_material = 2131099669;
-
- // aapt resource value: 0x7F060016
- public const int abc_ic_commit_search_api_mtrl_alpha = 2131099670;
-
- // aapt resource value: 0x7F060017
- public const int abc_ic_go_search_api_material = 2131099671;
-
- // aapt resource value: 0x7F060018
- public const int abc_ic_menu_copy_mtrl_am_alpha = 2131099672;
-
- // aapt resource value: 0x7F060019
- public const int abc_ic_menu_cut_mtrl_alpha = 2131099673;
-
- // aapt resource value: 0x7F06001A
- public const int abc_ic_menu_overflow_material = 2131099674;
-
- // aapt resource value: 0x7F06001B
- public const int abc_ic_menu_paste_mtrl_am_alpha = 2131099675;
-
- // aapt resource value: 0x7F06001C
- public const int abc_ic_menu_selectall_mtrl_alpha = 2131099676;
-
- // aapt resource value: 0x7F06001D
- public const int abc_ic_menu_share_mtrl_alpha = 2131099677;
-
- // aapt resource value: 0x7F06001E
- public const int abc_ic_search_api_material = 2131099678;
-
- // aapt resource value: 0x7F06001F
- public const int abc_ic_star_black_16dp = 2131099679;
-
- // aapt resource value: 0x7F060020
- public const int abc_ic_star_black_36dp = 2131099680;
-
- // aapt resource value: 0x7F060021
- public const int abc_ic_star_black_48dp = 2131099681;
-
- // aapt resource value: 0x7F060022
- public const int abc_ic_star_half_black_16dp = 2131099682;
-
- // aapt resource value: 0x7F060023
- public const int abc_ic_star_half_black_36dp = 2131099683;
-
- // aapt resource value: 0x7F060024
- public const int abc_ic_star_half_black_48dp = 2131099684;
-
- // aapt resource value: 0x7F060025
- public const int abc_ic_voice_search_api_material = 2131099685;
-
- // aapt resource value: 0x7F060026
- public const int abc_item_background_holo_dark = 2131099686;
-
- // aapt resource value: 0x7F060027
- public const int abc_item_background_holo_light = 2131099687;
-
- // aapt resource value: 0x7F060028
- public const int abc_list_divider_material = 2131099688;
-
- // aapt resource value: 0x7F060029
- public const int abc_list_divider_mtrl_alpha = 2131099689;
-
- // aapt resource value: 0x7F06002A
- public const int abc_list_focused_holo = 2131099690;
-
- // aapt resource value: 0x7F06002B
- public const int abc_list_longpressed_holo = 2131099691;
-
- // aapt resource value: 0x7F06002C
- public const int abc_list_pressed_holo_dark = 2131099692;
-
- // aapt resource value: 0x7F06002D
- public const int abc_list_pressed_holo_light = 2131099693;
-
- // aapt resource value: 0x7F06002E
- public const int abc_list_selector_background_transition_holo_dark = 2131099694;
-
- // aapt resource value: 0x7F06002F
- public const int abc_list_selector_background_transition_holo_light = 2131099695;
-
- // aapt resource value: 0x7F060030
- public const int abc_list_selector_disabled_holo_dark = 2131099696;
-
- // aapt resource value: 0x7F060031
- public const int abc_list_selector_disabled_holo_light = 2131099697;
-
- // aapt resource value: 0x7F060032
- public const int abc_list_selector_holo_dark = 2131099698;
-
- // aapt resource value: 0x7F060033
- public const int abc_list_selector_holo_light = 2131099699;
-
- // aapt resource value: 0x7F060034
- public const int abc_menu_hardkey_panel_mtrl_mult = 2131099700;
-
- // aapt resource value: 0x7F060035
- public const int abc_popup_background_mtrl_mult = 2131099701;
-
- // aapt resource value: 0x7F060036
- public const int abc_ratingbar_indicator_material = 2131099702;
-
- // aapt resource value: 0x7F060037
- public const int abc_ratingbar_material = 2131099703;
-
- // aapt resource value: 0x7F060038
- public const int abc_ratingbar_small_material = 2131099704;
-
- // aapt resource value: 0x7F060039
- public const int abc_scrubber_control_off_mtrl_alpha = 2131099705;
-
- // aapt resource value: 0x7F06003A
- public const int abc_scrubber_control_to_pressed_mtrl_000 = 2131099706;
-
- // aapt resource value: 0x7F06003B
- public const int abc_scrubber_control_to_pressed_mtrl_005 = 2131099707;
-
- // aapt resource value: 0x7F06003C
- public const int abc_scrubber_primary_mtrl_alpha = 2131099708;
-
- // aapt resource value: 0x7F06003D
- public const int abc_scrubber_track_mtrl_alpha = 2131099709;
-
- // aapt resource value: 0x7F06003E
- public const int abc_seekbar_thumb_material = 2131099710;
-
- // aapt resource value: 0x7F06003F
- public const int abc_seekbar_tick_mark_material = 2131099711;
-
- // aapt resource value: 0x7F060040
- public const int abc_seekbar_track_material = 2131099712;
-
- // aapt resource value: 0x7F060041
- public const int abc_spinner_mtrl_am_alpha = 2131099713;
-
- // aapt resource value: 0x7F060042
- public const int abc_spinner_textfield_background_material = 2131099714;
-
- // aapt resource value: 0x7F060043
- public const int abc_switch_thumb_material = 2131099715;
-
- // aapt resource value: 0x7F060044
- public const int abc_switch_track_mtrl_alpha = 2131099716;
-
- // aapt resource value: 0x7F060045
- public const int abc_tab_indicator_material = 2131099717;
-
- // aapt resource value: 0x7F060046
- public const int abc_tab_indicator_mtrl_alpha = 2131099718;
-
- // aapt resource value: 0x7F06004E
- public const int abc_textfield_activated_mtrl_alpha = 2131099726;
-
- // aapt resource value: 0x7F06004F
- public const int abc_textfield_default_mtrl_alpha = 2131099727;
-
- // aapt resource value: 0x7F060050
- public const int abc_textfield_search_activated_mtrl_alpha = 2131099728;
-
- // aapt resource value: 0x7F060051
- public const int abc_textfield_search_default_mtrl_alpha = 2131099729;
-
- // aapt resource value: 0x7F060052
- public const int abc_textfield_search_material = 2131099730;
-
- // aapt resource value: 0x7F060047
- public const int abc_text_cursor_material = 2131099719;
-
- // aapt resource value: 0x7F060048
- public const int abc_text_select_handle_left_mtrl_dark = 2131099720;
-
- // aapt resource value: 0x7F060049
- public const int abc_text_select_handle_left_mtrl_light = 2131099721;
-
- // aapt resource value: 0x7F06004A
- public const int abc_text_select_handle_middle_mtrl_dark = 2131099722;
-
- // aapt resource value: 0x7F06004B
- public const int abc_text_select_handle_middle_mtrl_light = 2131099723;
-
- // aapt resource value: 0x7F06004C
- public const int abc_text_select_handle_right_mtrl_dark = 2131099724;
-
- // aapt resource value: 0x7F06004D
- public const int abc_text_select_handle_right_mtrl_light = 2131099725;
-
- // aapt resource value: 0x7F060053
- public const int abc_vector_test = 2131099731;
-
- // aapt resource value: 0x7F060054
- public const int notification_action_background = 2131099732;
-
- // aapt resource value: 0x7F060055
- public const int notification_bg = 2131099733;
-
- // aapt resource value: 0x7F060056
- public const int notification_bg_low = 2131099734;
-
- // aapt resource value: 0x7F060057
- public const int notification_bg_low_normal = 2131099735;
-
- // aapt resource value: 0x7F060058
- public const int notification_bg_low_pressed = 2131099736;
-
- // aapt resource value: 0x7F060059
- public const int notification_bg_normal = 2131099737;
-
- // aapt resource value: 0x7F06005A
- public const int notification_bg_normal_pressed = 2131099738;
-
- // aapt resource value: 0x7F06005B
- public const int notification_icon_background = 2131099739;
-
- // aapt resource value: 0x7F06005C
- public const int notification_template_icon_bg = 2131099740;
-
- // aapt resource value: 0x7F06005D
- public const int notification_template_icon_low_bg = 2131099741;
-
- // aapt resource value: 0x7F06005E
- public const int notification_tile_bg = 2131099742;
-
- // aapt resource value: 0x7F06005F
- public const int notify_panel_notification_icon_bg = 2131099743;
-
- // aapt resource value: 0x7F060060
- public const int tooltip_frame_dark = 2131099744;
-
- // aapt resource value: 0x7F060061
- public const int tooltip_frame_light = 2131099745;
-
- static Drawable()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Drawable()
- {
- }
- }
-
- public partial class Id
- {
-
- // aapt resource value: 0x7F07002B
- public const int actions = 2131165227;
-
- // aapt resource value: 0x7F07001A
- public const int action_bar = 2131165210;
-
- // aapt resource value: 0x7F07001B
- public const int action_bar_activity_content = 2131165211;
-
- // aapt resource value: 0x7F07001C
- public const int action_bar_container = 2131165212;
-
- // aapt resource value: 0x7F07001D
- public const int action_bar_root = 2131165213;
-
- // aapt resource value: 0x7F07001E
- public const int action_bar_spinner = 2131165214;
-
- // aapt resource value: 0x7F07001F
- public const int action_bar_subtitle = 2131165215;
-
- // aapt resource value: 0x7F070020
- public const int action_bar_title = 2131165216;
-
- // aapt resource value: 0x7F070021
- public const int action_container = 2131165217;
-
- // aapt resource value: 0x7F070022
- public const int action_context_bar = 2131165218;
-
- // aapt resource value: 0x7F070023
- public const int action_divider = 2131165219;
-
- // aapt resource value: 0x7F070024
- public const int action_image = 2131165220;
-
- // aapt resource value: 0x7F070025
- public const int action_menu_divider = 2131165221;
-
- // aapt resource value: 0x7F070026
- public const int action_menu_presenter = 2131165222;
-
- // aapt resource value: 0x7F070027
- public const int action_mode_bar = 2131165223;
-
- // aapt resource value: 0x7F070028
- public const int action_mode_bar_stub = 2131165224;
-
- // aapt resource value: 0x7F070029
- public const int action_mode_close_button = 2131165225;
-
- // aapt resource value: 0x7F07002A
- public const int action_text = 2131165226;
-
- // aapt resource value: 0x7F07002C
- public const int activity_chooser_view_content = 2131165228;
-
- // aapt resource value: 0x7F07002D
- public const int add = 2131165229;
-
- // aapt resource value: 0x7F07002E
- public const int alertTitle = 2131165230;
-
- // aapt resource value: 0x7F07002F
- public const int all = 2131165231;
-
- // aapt resource value: 0x7F070000
- public const int ALT = 2131165184;
-
- // aapt resource value: 0x7F070030
- public const int always = 2131165232;
-
- // aapt resource value: 0x7F070031
- public const int async = 2131165233;
-
- // aapt resource value: 0x7F070032
- public const int beginning = 2131165234;
-
- // aapt resource value: 0x7F070033
- public const int blocking = 2131165235;
-
- // aapt resource value: 0x7F070034
- public const int bottom = 2131165236;
-
- // aapt resource value: 0x7F070035
- public const int buttonPanel = 2131165237;
-
- // aapt resource value: 0x7F070036
- public const int center = 2131165238;
-
- // aapt resource value: 0x7F070037
- public const int center_horizontal = 2131165239;
-
- // aapt resource value: 0x7F070038
- public const int center_vertical = 2131165240;
-
- // aapt resource value: 0x7F070039
- public const int checkbox = 2131165241;
-
- // aapt resource value: 0x7F07003A
- public const int chronometer = 2131165242;
-
- // aapt resource value: 0x7F07003B
- public const int clip_horizontal = 2131165243;
-
- // aapt resource value: 0x7F07003C
- public const int clip_vertical = 2131165244;
-
- // aapt resource value: 0x7F07003D
- public const int collapseActionView = 2131165245;
-
- // aapt resource value: 0x7F07003E
- public const int content = 2131165246;
-
- // aapt resource value: 0x7F07003F
- public const int contentPanel = 2131165247;
-
- // aapt resource value: 0x7F070002
- public const int CreditsButton = 2131165186;
-
- // aapt resource value: 0x7F070001
- public const int CTRL = 2131165185;
-
- // aapt resource value: 0x7F070040
- public const int custom = 2131165248;
-
- // aapt resource value: 0x7F070041
- public const int customPanel = 2131165249;
-
- // aapt resource value: 0x7F070042
- public const int decor_content_parent = 2131165250;
-
- // aapt resource value: 0x7F070043
- public const int default_activity_button = 2131165251;
-
- // aapt resource value: 0x7F070044
- public const int disableHome = 2131165252;
-
- // aapt resource value: 0x7F070045
- public const int edit_query = 2131165253;
-
- // aapt resource value: 0x7F070046
- public const int end = 2131165254;
-
- // aapt resource value: 0x7F070048
- public const int expanded_menu = 2131165256;
-
- // aapt resource value: 0x7F070047
- public const int expand_activities_button = 2131165255;
-
- // aapt resource value: 0x7F070049
- public const int fill = 2131165257;
-
- // aapt resource value: 0x7F07004A
- public const int fill_horizontal = 2131165258;
-
- // aapt resource value: 0x7F07004B
- public const int fill_vertical = 2131165259;
-
- // aapt resource value: 0x7F07004C
- public const int forever = 2131165260;
-
- // aapt resource value: 0x7F070003
- public const int FUNCTION = 2131165187;
-
- // aapt resource value: 0x7F07004D
- public const int group_divider = 2131165261;
-
- // aapt resource value: 0x7F07004E
- public const int home = 2131165262;
-
- // aapt resource value: 0x7F07004F
- public const int homeAsUp = 2131165263;
-
- // aapt resource value: 0x7F070050
- public const int icon = 2131165264;
-
- // aapt resource value: 0x7F070051
- public const int icon_group = 2131165265;
-
- // aapt resource value: 0x7F070052
- public const int ifRoom = 2131165266;
-
- // aapt resource value: 0x7F070053
- public const int image = 2131165267;
-
- // aapt resource value: 0x7F070054
- public const int info = 2131165268;
-
- // aapt resource value: 0x7F070055
- public const int italic = 2131165269;
-
- // aapt resource value: 0x7F070056
- public const int left = 2131165270;
-
- // aapt resource value: 0x7F070057
- public const int line1 = 2131165271;
-
- // aapt resource value: 0x7F070058
- public const int line3 = 2131165272;
-
- // aapt resource value: 0x7F070059
- public const int listMode = 2131165273;
-
- // aapt resource value: 0x7F07005A
- public const int list_item = 2131165274;
-
- // aapt resource value: 0x7F07005B
- public const int message = 2131165275;
-
- // aapt resource value: 0x7F070004
- public const int META = 2131165188;
-
- // aapt resource value: 0x7F07005C
- public const int middle = 2131165276;
-
- // aapt resource value: 0x7F07005D
- public const int multiply = 2131165277;
-
- // aapt resource value: 0x7F07005E
- public const int never = 2131165278;
-
- // aapt resource value: 0x7F07005F
- public const int none = 2131165279;
-
- // aapt resource value: 0x7F070060
- public const int normal = 2131165280;
-
- // aapt resource value: 0x7F070061
- public const int notification_background = 2131165281;
-
- // aapt resource value: 0x7F070062
- public const int notification_main_column = 2131165282;
-
- // aapt resource value: 0x7F070063
- public const int notification_main_column_container = 2131165283;
-
- // aapt resource value: 0x7F070005
- public const int OptionHostName = 2131165189;
-
- // aapt resource value: 0x7F070006
- public const int OptionPort = 2131165190;
-
- // aapt resource value: 0x7F070007
- public const int OptionRemoteServer = 2131165191;
-
- // aapt resource value: 0x7F070008
- public const int OptionsButton = 2131165192;
-
- // aapt resource value: 0x7F070064
- public const int parentPanel = 2131165284;
-
- // aapt resource value: 0x7F070065
- public const int progress_circular = 2131165285;
-
- // aapt resource value: 0x7F070066
- public const int progress_horizontal = 2131165286;
-
- // aapt resource value: 0x7F070067
- public const int radio = 2131165287;
-
- // aapt resource value: 0x7F070009
- public const int ResultFullName = 2131165193;
-
- // aapt resource value: 0x7F07000A
- public const int ResultMessage = 2131165194;
-
- // aapt resource value: 0x7F07000B
- public const int ResultResultState = 2131165195;
-
- // aapt resource value: 0x7F07000C
- public const int ResultRunSingleMethodTest = 2131165196;
-
- // aapt resource value: 0x7F07000E
- public const int ResultsFailed = 2131165198;
-
- // aapt resource value: 0x7F07000F
- public const int ResultsId = 2131165199;
-
- // aapt resource value: 0x7F070010
- public const int ResultsIgnored = 2131165200;
-
- // aapt resource value: 0x7F070011
- public const int ResultsInconclusive = 2131165201;
-
- // aapt resource value: 0x7F070012
- public const int ResultsMessage = 2131165202;
-
- // aapt resource value: 0x7F070013
- public const int ResultsPassed = 2131165203;
-
- // aapt resource value: 0x7F070014
- public const int ResultsResult = 2131165204;
-
- // aapt resource value: 0x7F07000D
- public const int ResultStackTrace = 2131165197;
-
- // aapt resource value: 0x7F070068
- public const int right = 2131165288;
-
- // aapt resource value: 0x7F070069
- public const int right_icon = 2131165289;
-
- // aapt resource value: 0x7F07006A
- public const int right_side = 2131165290;
-
- // aapt resource value: 0x7F070015
- public const int RunEverythingButton = 2131165205;
-
- // aapt resource value: 0x7F070016
- public const int RunTestsButton = 2131165206;
-
- // aapt resource value: 0x7F07006B
- public const int screen = 2131165291;
-
- // aapt resource value: 0x7F07006C
- public const int scrollIndicatorDown = 2131165292;
-
- // aapt resource value: 0x7F07006D
- public const int scrollIndicatorUp = 2131165293;
-
- // aapt resource value: 0x7F07006E
- public const int scrollView = 2131165294;
-
- // aapt resource value: 0x7F07006F
- public const int search_badge = 2131165295;
-
- // aapt resource value: 0x7F070070
- public const int search_bar = 2131165296;
-
- // aapt resource value: 0x7F070071
- public const int search_button = 2131165297;
-
- // aapt resource value: 0x7F070072
- public const int search_close_btn = 2131165298;
-
- // aapt resource value: 0x7F070073
- public const int search_edit_frame = 2131165299;
-
- // aapt resource value: 0x7F070074
- public const int search_go_btn = 2131165300;
-
- // aapt resource value: 0x7F070075
- public const int search_mag_icon = 2131165301;
-
- // aapt resource value: 0x7F070076
- public const int search_plate = 2131165302;
-
- // aapt resource value: 0x7F070077
- public const int search_src_text = 2131165303;
-
- // aapt resource value: 0x7F070078
- public const int search_voice_btn = 2131165304;
-
- // aapt resource value: 0x7F070079
- public const int select_dialog_listview = 2131165305;
-
- // aapt resource value: 0x7F070017
- public const int SHIFT = 2131165207;
-
- // aapt resource value: 0x7F07007A
- public const int shortcut = 2131165306;
-
- // aapt resource value: 0x7F07007B
- public const int showCustom = 2131165307;
-
- // aapt resource value: 0x7F07007C
- public const int showHome = 2131165308;
-
- // aapt resource value: 0x7F07007D
- public const int showTitle = 2131165309;
-
- // aapt resource value: 0x7F07007E
- public const int spacer = 2131165310;
-
- // aapt resource value: 0x7F07007F
- public const int split_action_bar = 2131165311;
-
- // aapt resource value: 0x7F070080
- public const int src_atop = 2131165312;
-
- // aapt resource value: 0x7F070081
- public const int src_in = 2131165313;
-
- // aapt resource value: 0x7F070082
- public const int src_over = 2131165314;
-
- // aapt resource value: 0x7F070083
- public const int start = 2131165315;
-
- // aapt resource value: 0x7F070084
- public const int submenuarrow = 2131165316;
-
- // aapt resource value: 0x7F070085
- public const int submit_area = 2131165317;
-
- // aapt resource value: 0x7F070018
- public const int SYM = 2131165208;
-
- // aapt resource value: 0x7F070086
- public const int tabMode = 2131165318;
-
- // aapt resource value: 0x7F070087
- public const int tag_transition_group = 2131165319;
-
- // aapt resource value: 0x7F070088
- public const int tag_unhandled_key_event_manager = 2131165320;
-
- // aapt resource value: 0x7F070089
- public const int tag_unhandled_key_listeners = 2131165321;
-
- // aapt resource value: 0x7F070019
- public const int TestSuiteListView = 2131165209;
-
- // aapt resource value: 0x7F07008A
- public const int text = 2131165322;
-
- // aapt resource value: 0x7F07008B
- public const int text2 = 2131165323;
-
- // aapt resource value: 0x7F07008C
- public const int textSpacerNoButtons = 2131165324;
-
- // aapt resource value: 0x7F07008D
- public const int textSpacerNoTitle = 2131165325;
-
- // aapt resource value: 0x7F07008E
- public const int time = 2131165326;
-
- // aapt resource value: 0x7F07008F
- public const int title = 2131165327;
-
- // aapt resource value: 0x7F070090
- public const int titleDividerNoCustom = 2131165328;
-
- // aapt resource value: 0x7F070091
- public const int title_template = 2131165329;
-
- // aapt resource value: 0x7F070092
- public const int top = 2131165330;
-
- // aapt resource value: 0x7F070093
- public const int topPanel = 2131165331;
-
- // aapt resource value: 0x7F070094
- public const int uniform = 2131165332;
-
- // aapt resource value: 0x7F070095
- public const int up = 2131165333;
-
- // aapt resource value: 0x7F070096
- public const int useLogo = 2131165334;
-
- // aapt resource value: 0x7F070097
- public const int withText = 2131165335;
-
- // aapt resource value: 0x7F070098
- public const int wrap_content = 2131165336;
-
- static Id()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Id()
- {
- }
- }
-
- public partial class Integer
- {
-
- // aapt resource value: 0x7F080000
- public const int abc_config_activityDefaultDur = 2131230720;
-
- // aapt resource value: 0x7F080001
- public const int abc_config_activityShortDur = 2131230721;
-
- // aapt resource value: 0x7F080002
- public const int cancel_button_image_alpha = 2131230722;
-
- // aapt resource value: 0x7F080003
- public const int config_tooltipAnimTime = 2131230723;
-
- // aapt resource value: 0x7F080004
- public const int status_bar_notification_info_maxnum = 2131230724;
-
- static Integer()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Integer()
- {
- }
- }
-
- public partial class Layout
- {
-
- // aapt resource value: 0x7F090000
- public const int abc_action_bar_title_item = 2131296256;
-
- // aapt resource value: 0x7F090001
- public const int abc_action_bar_up_container = 2131296257;
-
- // aapt resource value: 0x7F090002
- public const int abc_action_menu_item_layout = 2131296258;
-
- // aapt resource value: 0x7F090003
- public const int abc_action_menu_layout = 2131296259;
-
- // aapt resource value: 0x7F090004
- public const int abc_action_mode_bar = 2131296260;
-
- // aapt resource value: 0x7F090005
- public const int abc_action_mode_close_item_material = 2131296261;
-
- // aapt resource value: 0x7F090006
- public const int abc_activity_chooser_view = 2131296262;
-
- // aapt resource value: 0x7F090007
- public const int abc_activity_chooser_view_list_item = 2131296263;
-
- // aapt resource value: 0x7F090008
- public const int abc_alert_dialog_button_bar_material = 2131296264;
-
- // aapt resource value: 0x7F090009
- public const int abc_alert_dialog_material = 2131296265;
-
- // aapt resource value: 0x7F09000A
- public const int abc_alert_dialog_title_material = 2131296266;
-
- // aapt resource value: 0x7F09000B
- public const int abc_cascading_menu_item_layout = 2131296267;
-
- // aapt resource value: 0x7F09000C
- public const int abc_dialog_title_material = 2131296268;
-
- // aapt resource value: 0x7F09000D
- public const int abc_expanded_menu_layout = 2131296269;
-
- // aapt resource value: 0x7F09000E
- public const int abc_list_menu_item_checkbox = 2131296270;
-
- // aapt resource value: 0x7F09000F
- public const int abc_list_menu_item_icon = 2131296271;
-
- // aapt resource value: 0x7F090010
- public const int abc_list_menu_item_layout = 2131296272;
-
- // aapt resource value: 0x7F090011
- public const int abc_list_menu_item_radio = 2131296273;
-
- // aapt resource value: 0x7F090012
- public const int abc_popup_menu_header_item_layout = 2131296274;
-
- // aapt resource value: 0x7F090013
- public const int abc_popup_menu_item_layout = 2131296275;
-
- // aapt resource value: 0x7F090014
- public const int abc_screen_content_include = 2131296276;
-
- // aapt resource value: 0x7F090015
- public const int abc_screen_simple = 2131296277;
-
- // aapt resource value: 0x7F090016
- public const int abc_screen_simple_overlay_action_mode = 2131296278;
-
- // aapt resource value: 0x7F090017
- public const int abc_screen_toolbar = 2131296279;
-
- // aapt resource value: 0x7F090018
- public const int abc_search_dropdown_item_icons_2line = 2131296280;
-
- // aapt resource value: 0x7F090019
- public const int abc_search_view = 2131296281;
-
- // aapt resource value: 0x7F09001A
- public const int abc_select_dialog_material = 2131296282;
-
- // aapt resource value: 0x7F09001B
- public const int abc_tooltip = 2131296283;
-
- // aapt resource value: 0x7F09001C
- public const int notification_action = 2131296284;
-
- // aapt resource value: 0x7F09001D
- public const int notification_action_tombstone = 2131296285;
-
- // aapt resource value: 0x7F09001E
- public const int notification_template_custom_big = 2131296286;
-
- // aapt resource value: 0x7F09001F
- public const int notification_template_icon_group = 2131296287;
-
- // aapt resource value: 0x7F090020
- public const int notification_template_part_chronometer = 2131296288;
-
- // aapt resource value: 0x7F090021
- public const int notification_template_part_time = 2131296289;
-
- // aapt resource value: 0x7F090022
- public const int options = 2131296290;
-
- // aapt resource value: 0x7F090023
- public const int results = 2131296291;
-
- // aapt resource value: 0x7F090024
- public const int Runner = 2131296292;
-
- // aapt resource value: 0x7F090025
- public const int select_dialog_item_material = 2131296293;
-
- // aapt resource value: 0x7F090026
- public const int select_dialog_multichoice_material = 2131296294;
-
- // aapt resource value: 0x7F090027
- public const int select_dialog_singlechoice_material = 2131296295;
-
- // aapt resource value: 0x7F090028
- public const int support_simple_spinner_dropdown_item = 2131296296;
-
- // aapt resource value: 0x7F090029
- public const int test_result = 2131296297;
-
- // aapt resource value: 0x7F09002A
- public const int test_suite = 2131296298;
-
- static Layout()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Layout()
- {
- }
- }
-
- public partial class Mipmap
- {
-
- // aapt resource value: 0x7F0A0000
- public const int Icon = 2131361792;
-
- static Mipmap()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Mipmap()
- {
- }
- }
-
- public partial class String
- {
-
- // aapt resource value: 0x7F0B0000
- public const int abc_action_bar_home_description = 2131427328;
-
- // aapt resource value: 0x7F0B0001
- public const int abc_action_bar_up_description = 2131427329;
-
- // aapt resource value: 0x7F0B0002
- public const int abc_action_menu_overflow_description = 2131427330;
-
- // aapt resource value: 0x7F0B0003
- public const int abc_action_mode_done = 2131427331;
-
- // aapt resource value: 0x7F0B0005
- public const int abc_activitychooserview_choose_application = 2131427333;
-
- // aapt resource value: 0x7F0B0004
- public const int abc_activity_chooser_view_see_all = 2131427332;
-
- // aapt resource value: 0x7F0B0006
- public const int abc_capital_off = 2131427334;
-
- // aapt resource value: 0x7F0B0007
- public const int abc_capital_on = 2131427335;
-
- // aapt resource value: 0x7F0B0008
- public const int abc_font_family_body_1_material = 2131427336;
-
- // aapt resource value: 0x7F0B0009
- public const int abc_font_family_body_2_material = 2131427337;
-
- // aapt resource value: 0x7F0B000A
- public const int abc_font_family_button_material = 2131427338;
-
- // aapt resource value: 0x7F0B000B
- public const int abc_font_family_caption_material = 2131427339;
-
- // aapt resource value: 0x7F0B000C
- public const int abc_font_family_display_1_material = 2131427340;
-
- // aapt resource value: 0x7F0B000D
- public const int abc_font_family_display_2_material = 2131427341;
-
- // aapt resource value: 0x7F0B000E
- public const int abc_font_family_display_3_material = 2131427342;
-
- // aapt resource value: 0x7F0B000F
- public const int abc_font_family_display_4_material = 2131427343;
-
- // aapt resource value: 0x7F0B0010
- public const int abc_font_family_headline_material = 2131427344;
-
- // aapt resource value: 0x7F0B0011
- public const int abc_font_family_menu_material = 2131427345;
-
- // aapt resource value: 0x7F0B0012
- public const int abc_font_family_subhead_material = 2131427346;
-
- // aapt resource value: 0x7F0B0013
- public const int abc_font_family_title_material = 2131427347;
-
- // aapt resource value: 0x7F0B0014
- public const int abc_menu_alt_shortcut_label = 2131427348;
-
- // aapt resource value: 0x7F0B0015
- public const int abc_menu_ctrl_shortcut_label = 2131427349;
-
- // aapt resource value: 0x7F0B0016
- public const int abc_menu_delete_shortcut_label = 2131427350;
-
- // aapt resource value: 0x7F0B0017
- public const int abc_menu_enter_shortcut_label = 2131427351;
-
- // aapt resource value: 0x7F0B0018
- public const int abc_menu_function_shortcut_label = 2131427352;
-
- // aapt resource value: 0x7F0B0019
- public const int abc_menu_meta_shortcut_label = 2131427353;
-
- // aapt resource value: 0x7F0B001A
- public const int abc_menu_shift_shortcut_label = 2131427354;
-
- // aapt resource value: 0x7F0B001B
- public const int abc_menu_space_shortcut_label = 2131427355;
-
- // aapt resource value: 0x7F0B001C
- public const int abc_menu_sym_shortcut_label = 2131427356;
-
- // aapt resource value: 0x7F0B001D
- public const int abc_prepend_shortcut_label = 2131427357;
-
- // aapt resource value: 0x7F0B001F
- public const int abc_searchview_description_clear = 2131427359;
-
- // aapt resource value: 0x7F0B0020
- public const int abc_searchview_description_query = 2131427360;
-
- // aapt resource value: 0x7F0B0021
- public const int abc_searchview_description_search = 2131427361;
-
- // aapt resource value: 0x7F0B0022
- public const int abc_searchview_description_submit = 2131427362;
-
- // aapt resource value: 0x7F0B0023
- public const int abc_searchview_description_voice = 2131427363;
-
- // aapt resource value: 0x7F0B001E
- public const int abc_search_hint = 2131427358;
-
- // aapt resource value: 0x7F0B0024
- public const int abc_shareactionprovider_share_with = 2131427364;
-
- // aapt resource value: 0x7F0B0025
- public const int abc_shareactionprovider_share_with_application = 2131427365;
-
- // aapt resource value: 0x7F0B0026
- public const int abc_toolbar_collapse_description = 2131427366;
-
- // aapt resource value: 0x7F0B0027
- public const int app_name = 2131427367;
-
- // aapt resource value: 0x7F0B0028
- public const int hello = 2131427368;
-
- // aapt resource value: 0x7F0B0029
- public const int search_menu_title = 2131427369;
-
- // aapt resource value: 0x7F0B002A
- public const int status_bar_notification_info_overflow = 2131427370;
-
- static String()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private String()
- {
- }
- }
-
- public partial class Style
- {
-
- // aapt resource value: 0x7F0C0000
- public const int AlertDialog_AppCompat = 2131492864;
-
- // aapt resource value: 0x7F0C0001
- public const int AlertDialog_AppCompat_Light = 2131492865;
-
- // aapt resource value: 0x7F0C0002
- public const int Animation_AppCompat_Dialog = 2131492866;
-
- // aapt resource value: 0x7F0C0003
- public const int Animation_AppCompat_DropDownUp = 2131492867;
-
- // aapt resource value: 0x7F0C0004
- public const int Animation_AppCompat_Tooltip = 2131492868;
-
- // aapt resource value: 0x7F0C0005
- public const int Base_AlertDialog_AppCompat = 2131492869;
-
- // aapt resource value: 0x7F0C0006
- public const int Base_AlertDialog_AppCompat_Light = 2131492870;
-
- // aapt resource value: 0x7F0C0007
- public const int Base_Animation_AppCompat_Dialog = 2131492871;
-
- // aapt resource value: 0x7F0C0008
- public const int Base_Animation_AppCompat_DropDownUp = 2131492872;
-
- // aapt resource value: 0x7F0C0009
- public const int Base_Animation_AppCompat_Tooltip = 2131492873;
-
- // aapt resource value: 0x7F0C000B
- public const int Base_DialogWindowTitleBackground_AppCompat = 2131492875;
-
- // aapt resource value: 0x7F0C000A
- public const int Base_DialogWindowTitle_AppCompat = 2131492874;
-
- // aapt resource value: 0x7F0C000C
- public const int Base_TextAppearance_AppCompat = 2131492876;
-
- // aapt resource value: 0x7F0C000D
- public const int Base_TextAppearance_AppCompat_Body1 = 2131492877;
-
- // aapt resource value: 0x7F0C000E
- public const int Base_TextAppearance_AppCompat_Body2 = 2131492878;
-
- // aapt resource value: 0x7F0C000F
- public const int Base_TextAppearance_AppCompat_Button = 2131492879;
-
- // aapt resource value: 0x7F0C0010
- public const int Base_TextAppearance_AppCompat_Caption = 2131492880;
-
- // aapt resource value: 0x7F0C0011
- public const int Base_TextAppearance_AppCompat_Display1 = 2131492881;
-
- // aapt resource value: 0x7F0C0012
- public const int Base_TextAppearance_AppCompat_Display2 = 2131492882;
-
- // aapt resource value: 0x7F0C0013
- public const int Base_TextAppearance_AppCompat_Display3 = 2131492883;
-
- // aapt resource value: 0x7F0C0014
- public const int Base_TextAppearance_AppCompat_Display4 = 2131492884;
-
- // aapt resource value: 0x7F0C0015
- public const int Base_TextAppearance_AppCompat_Headline = 2131492885;
-
- // aapt resource value: 0x7F0C0016
- public const int Base_TextAppearance_AppCompat_Inverse = 2131492886;
-
- // aapt resource value: 0x7F0C0017
- public const int Base_TextAppearance_AppCompat_Large = 2131492887;
-
- // aapt resource value: 0x7F0C0018
- public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131492888;
-
- // aapt resource value: 0x7F0C0019
- public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131492889;
-
- // aapt resource value: 0x7F0C001A
- public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131492890;
-
- // aapt resource value: 0x7F0C001B
- public const int Base_TextAppearance_AppCompat_Medium = 2131492891;
-
- // aapt resource value: 0x7F0C001C
- public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131492892;
-
- // aapt resource value: 0x7F0C001D
- public const int Base_TextAppearance_AppCompat_Menu = 2131492893;
-
- // aapt resource value: 0x7F0C001E
- public const int Base_TextAppearance_AppCompat_SearchResult = 2131492894;
-
- // aapt resource value: 0x7F0C001F
- public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131492895;
-
- // aapt resource value: 0x7F0C0020
- public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131492896;
-
- // aapt resource value: 0x7F0C0021
- public const int Base_TextAppearance_AppCompat_Small = 2131492897;
-
- // aapt resource value: 0x7F0C0022
- public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131492898;
-
- // aapt resource value: 0x7F0C0023
- public const int Base_TextAppearance_AppCompat_Subhead = 2131492899;
-
- // aapt resource value: 0x7F0C0024
- public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131492900;
-
- // aapt resource value: 0x7F0C0025
- public const int Base_TextAppearance_AppCompat_Title = 2131492901;
-
- // aapt resource value: 0x7F0C0026
- public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131492902;
-
- // aapt resource value: 0x7F0C0027
- public const int Base_TextAppearance_AppCompat_Tooltip = 2131492903;
-
- // aapt resource value: 0x7F0C0028
- public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131492904;
-
- // aapt resource value: 0x7F0C0029
- public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131492905;
-
- // aapt resource value: 0x7F0C002A
- public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131492906;
-
- // aapt resource value: 0x7F0C002B
- public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131492907;
-
- // aapt resource value: 0x7F0C002C
- public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131492908;
-
- // aapt resource value: 0x7F0C002D
- public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131492909;
-
- // aapt resource value: 0x7F0C002E
- public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131492910;
-
- // aapt resource value: 0x7F0C002F
- public const int Base_TextAppearance_AppCompat_Widget_Button = 2131492911;
-
- // aapt resource value: 0x7F0C0030
- public const int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131492912;
-
- // aapt resource value: 0x7F0C0031
- public const int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131492913;
-
- // aapt resource value: 0x7F0C0032
- public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131492914;
-
- // aapt resource value: 0x7F0C0033
- public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131492915;
-
- // aapt resource value: 0x7F0C0034
- public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131492916;
-
- // aapt resource value: 0x7F0C0035
- public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131492917;
-
- // aapt resource value: 0x7F0C0036
- public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131492918;
-
- // aapt resource value: 0x7F0C0037
- public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131492919;
-
- // aapt resource value: 0x7F0C0038
- public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131492920;
-
- // aapt resource value: 0x7F0C0039
- public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131492921;
-
- // aapt resource value: 0x7F0C003A
- public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131492922;
-
- // aapt resource value: 0x7F0C003B
- public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131492923;
-
- // aapt resource value: 0x7F0C004A
- public const int Base_ThemeOverlay_AppCompat = 2131492938;
-
- // aapt resource value: 0x7F0C004B
- public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131492939;
-
- // aapt resource value: 0x7F0C004C
- public const int Base_ThemeOverlay_AppCompat_Dark = 2131492940;
-
- // aapt resource value: 0x7F0C004D
- public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131492941;
-
- // aapt resource value: 0x7F0C004E
- public const int Base_ThemeOverlay_AppCompat_Dialog = 2131492942;
-
- // aapt resource value: 0x7F0C004F
- public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131492943;
-
- // aapt resource value: 0x7F0C0050
- public const int Base_ThemeOverlay_AppCompat_Light = 2131492944;
-
- // aapt resource value: 0x7F0C003C
- public const int Base_Theme_AppCompat = 2131492924;
-
- // aapt resource value: 0x7F0C003D
- public const int Base_Theme_AppCompat_CompactMenu = 2131492925;
-
- // aapt resource value: 0x7F0C003E
- public const int Base_Theme_AppCompat_Dialog = 2131492926;
-
- // aapt resource value: 0x7F0C0042
- public const int Base_Theme_AppCompat_DialogWhenLarge = 2131492930;
-
- // aapt resource value: 0x7F0C003F
- public const int Base_Theme_AppCompat_Dialog_Alert = 2131492927;
-
- // aapt resource value: 0x7F0C0040
- public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131492928;
-
- // aapt resource value: 0x7F0C0041
- public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131492929;
-
- // aapt resource value: 0x7F0C0043
- public const int Base_Theme_AppCompat_Light = 2131492931;
-
- // aapt resource value: 0x7F0C0044
- public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131492932;
-
- // aapt resource value: 0x7F0C0045
- public const int Base_Theme_AppCompat_Light_Dialog = 2131492933;
-
- // aapt resource value: 0x7F0C0049
- public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131492937;
-
- // aapt resource value: 0x7F0C0046
- public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131492934;
-
- // aapt resource value: 0x7F0C0047
- public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131492935;
-
- // aapt resource value: 0x7F0C0048
- public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131492936;
-
- // aapt resource value: 0x7F0C0055
- public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131492949;
-
- // aapt resource value: 0x7F0C0051
- public const int Base_V21_Theme_AppCompat = 2131492945;
-
- // aapt resource value: 0x7F0C0052
- public const int Base_V21_Theme_AppCompat_Dialog = 2131492946;
-
- // aapt resource value: 0x7F0C0053
- public const int Base_V21_Theme_AppCompat_Light = 2131492947;
-
- // aapt resource value: 0x7F0C0054
- public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131492948;
-
- // aapt resource value: 0x7F0C0056
- public const int Base_V22_Theme_AppCompat = 2131492950;
-
- // aapt resource value: 0x7F0C0057
- public const int Base_V22_Theme_AppCompat_Light = 2131492951;
-
- // aapt resource value: 0x7F0C0058
- public const int Base_V23_Theme_AppCompat = 2131492952;
-
- // aapt resource value: 0x7F0C0059
- public const int Base_V23_Theme_AppCompat_Light = 2131492953;
-
- // aapt resource value: 0x7F0C005A
- public const int Base_V26_Theme_AppCompat = 2131492954;
-
- // aapt resource value: 0x7F0C005B
- public const int Base_V26_Theme_AppCompat_Light = 2131492955;
-
- // aapt resource value: 0x7F0C005C
- public const int Base_V26_Widget_AppCompat_Toolbar = 2131492956;
-
- // aapt resource value: 0x7F0C005D
- public const int Base_V28_Theme_AppCompat = 2131492957;
-
- // aapt resource value: 0x7F0C005E
- public const int Base_V28_Theme_AppCompat_Light = 2131492958;
-
- // aapt resource value: 0x7F0C0063
- public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131492963;
-
- // aapt resource value: 0x7F0C005F
- public const int Base_V7_Theme_AppCompat = 2131492959;
-
- // aapt resource value: 0x7F0C0060
- public const int Base_V7_Theme_AppCompat_Dialog = 2131492960;
-
- // aapt resource value: 0x7F0C0061
- public const int Base_V7_Theme_AppCompat_Light = 2131492961;
-
- // aapt resource value: 0x7F0C0062
- public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131492962;
-
- // aapt resource value: 0x7F0C0064
- public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131492964;
-
- // aapt resource value: 0x7F0C0065
- public const int Base_V7_Widget_AppCompat_EditText = 2131492965;
-
- // aapt resource value: 0x7F0C0066
- public const int Base_V7_Widget_AppCompat_Toolbar = 2131492966;
-
- // aapt resource value: 0x7F0C0067
- public const int Base_Widget_AppCompat_ActionBar = 2131492967;
-
- // aapt resource value: 0x7F0C0068
- public const int Base_Widget_AppCompat_ActionBar_Solid = 2131492968;
-
- // aapt resource value: 0x7F0C0069
- public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131492969;
-
- // aapt resource value: 0x7F0C006A
- public const int Base_Widget_AppCompat_ActionBar_TabText = 2131492970;
-
- // aapt resource value: 0x7F0C006B
- public const int Base_Widget_AppCompat_ActionBar_TabView = 2131492971;
-
- // aapt resource value: 0x7F0C006C
- public const int Base_Widget_AppCompat_ActionButton = 2131492972;
-
- // aapt resource value: 0x7F0C006D
- public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131492973;
-
- // aapt resource value: 0x7F0C006E
- public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131492974;
-
- // aapt resource value: 0x7F0C006F
- public const int Base_Widget_AppCompat_ActionMode = 2131492975;
-
- // aapt resource value: 0x7F0C0070
- public const int Base_Widget_AppCompat_ActivityChooserView = 2131492976;
-
- // aapt resource value: 0x7F0C0071
- public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131492977;
-
- // aapt resource value: 0x7F0C0072
- public const int Base_Widget_AppCompat_Button = 2131492978;
-
- // aapt resource value: 0x7F0C0078
- public const int Base_Widget_AppCompat_ButtonBar = 2131492984;
-
- // aapt resource value: 0x7F0C0079
- public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131492985;
-
- // aapt resource value: 0x7F0C0073
- public const int Base_Widget_AppCompat_Button_Borderless = 2131492979;
-
- // aapt resource value: 0x7F0C0074
- public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131492980;
-
- // aapt resource value: 0x7F0C0075
- public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131492981;
-
- // aapt resource value: 0x7F0C0076
- public const int Base_Widget_AppCompat_Button_Colored = 2131492982;
-
- // aapt resource value: 0x7F0C0077
- public const int Base_Widget_AppCompat_Button_Small = 2131492983;
-
- // aapt resource value: 0x7F0C007A
- public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131492986;
-
- // aapt resource value: 0x7F0C007B
- public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131492987;
-
- // aapt resource value: 0x7F0C007C
- public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131492988;
-
- // aapt resource value: 0x7F0C007D
- public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131492989;
-
- // aapt resource value: 0x7F0C007E
- public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131492990;
-
- // aapt resource value: 0x7F0C007F
- public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131492991;
-
- // aapt resource value: 0x7F0C0080
- public const int Base_Widget_AppCompat_EditText = 2131492992;
-
- // aapt resource value: 0x7F0C0081
- public const int Base_Widget_AppCompat_ImageButton = 2131492993;
-
- // aapt resource value: 0x7F0C0082
- public const int Base_Widget_AppCompat_Light_ActionBar = 2131492994;
-
- // aapt resource value: 0x7F0C0083
- public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131492995;
-
- // aapt resource value: 0x7F0C0084
- public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131492996;
-
- // aapt resource value: 0x7F0C0085
- public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131492997;
-
- // aapt resource value: 0x7F0C0086
- public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131492998;
-
- // aapt resource value: 0x7F0C0087
- public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131492999;
-
- // aapt resource value: 0x7F0C0088
- public const int Base_Widget_AppCompat_Light_PopupMenu = 2131493000;
-
- // aapt resource value: 0x7F0C0089
- public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131493001;
-
- // aapt resource value: 0x7F0C008A
- public const int Base_Widget_AppCompat_ListMenuView = 2131493002;
-
- // aapt resource value: 0x7F0C008B
- public const int Base_Widget_AppCompat_ListPopupWindow = 2131493003;
-
- // aapt resource value: 0x7F0C008C
- public const int Base_Widget_AppCompat_ListView = 2131493004;
-
- // aapt resource value: 0x7F0C008D
- public const int Base_Widget_AppCompat_ListView_DropDown = 2131493005;
-
- // aapt resource value: 0x7F0C008E
- public const int Base_Widget_AppCompat_ListView_Menu = 2131493006;
-
- // aapt resource value: 0x7F0C008F
- public const int Base_Widget_AppCompat_PopupMenu = 2131493007;
-
- // aapt resource value: 0x7F0C0090
- public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131493008;
-
- // aapt resource value: 0x7F0C0091
- public const int Base_Widget_AppCompat_PopupWindow = 2131493009;
-
- // aapt resource value: 0x7F0C0092
- public const int Base_Widget_AppCompat_ProgressBar = 2131493010;
-
- // aapt resource value: 0x7F0C0093
- public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131493011;
-
- // aapt resource value: 0x7F0C0094
- public const int Base_Widget_AppCompat_RatingBar = 2131493012;
-
- // aapt resource value: 0x7F0C0095
- public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131493013;
-
- // aapt resource value: 0x7F0C0096
- public const int Base_Widget_AppCompat_RatingBar_Small = 2131493014;
-
- // aapt resource value: 0x7F0C0097
- public const int Base_Widget_AppCompat_SearchView = 2131493015;
-
- // aapt resource value: 0x7F0C0098
- public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131493016;
-
- // aapt resource value: 0x7F0C0099
- public const int Base_Widget_AppCompat_SeekBar = 2131493017;
-
- // aapt resource value: 0x7F0C009A
- public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131493018;
-
- // aapt resource value: 0x7F0C009B
- public const int Base_Widget_AppCompat_Spinner = 2131493019;
-
- // aapt resource value: 0x7F0C009C
- public const int Base_Widget_AppCompat_Spinner_Underlined = 2131493020;
-
- // aapt resource value: 0x7F0C009D
- public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131493021;
-
- // aapt resource value: 0x7F0C009E
- public const int Base_Widget_AppCompat_Toolbar = 2131493022;
-
- // aapt resource value: 0x7F0C009F
- public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131493023;
-
- // aapt resource value: 0x7F0C00A0
- public const int Platform_AppCompat = 2131493024;
-
- // aapt resource value: 0x7F0C00A1
- public const int Platform_AppCompat_Light = 2131493025;
-
- // aapt resource value: 0x7F0C00A2
- public const int Platform_ThemeOverlay_AppCompat = 2131493026;
-
- // aapt resource value: 0x7F0C00A3
- public const int Platform_ThemeOverlay_AppCompat_Dark = 2131493027;
-
- // aapt resource value: 0x7F0C00A4
- public const int Platform_ThemeOverlay_AppCompat_Light = 2131493028;
-
- // aapt resource value: 0x7F0C00A5
- public const int Platform_V21_AppCompat = 2131493029;
-
- // aapt resource value: 0x7F0C00A6
- public const int Platform_V21_AppCompat_Light = 2131493030;
-
- // aapt resource value: 0x7F0C00A7
- public const int Platform_V25_AppCompat = 2131493031;
-
- // aapt resource value: 0x7F0C00A8
- public const int Platform_V25_AppCompat_Light = 2131493032;
-
- // aapt resource value: 0x7F0C00A9
- public const int Platform_Widget_AppCompat_Spinner = 2131493033;
-
- // aapt resource value: 0x7F0C00AA
- public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131493034;
-
- // aapt resource value: 0x7F0C00AB
- public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131493035;
-
- // aapt resource value: 0x7F0C00AC
- public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131493036;
-
- // aapt resource value: 0x7F0C00AD
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131493037;
-
- // aapt resource value: 0x7F0C00AE
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131493038;
-
- // aapt resource value: 0x7F0C00AF
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131493039;
-
- // aapt resource value: 0x7F0C00B0
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131493040;
-
- // aapt resource value: 0x7F0C00B1
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131493041;
-
- // aapt resource value: 0x7F0C00B2
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131493042;
-
- // aapt resource value: 0x7F0C00B8
- public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131493048;
-
- // aapt resource value: 0x7F0C00B3
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131493043;
-
- // aapt resource value: 0x7F0C00B4
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131493044;
-
- // aapt resource value: 0x7F0C00B5
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131493045;
-
- // aapt resource value: 0x7F0C00B6
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131493046;
-
- // aapt resource value: 0x7F0C00B7
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131493047;
-
- // aapt resource value: 0x7F0C00B9
- public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131493049;
-
- // aapt resource value: 0x7F0C00BA
- public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131493050;
-
- // aapt resource value: 0x7F0C00BB
- public const int TextAppearance_AppCompat = 2131493051;
-
- // aapt resource value: 0x7F0C00BC
- public const int TextAppearance_AppCompat_Body1 = 2131493052;
-
- // aapt resource value: 0x7F0C00BD
- public const int TextAppearance_AppCompat_Body2 = 2131493053;
-
- // aapt resource value: 0x7F0C00BE
- public const int TextAppearance_AppCompat_Button = 2131493054;
-
- // aapt resource value: 0x7F0C00BF
- public const int TextAppearance_AppCompat_Caption = 2131493055;
-
- // aapt resource value: 0x7F0C00C0
- public const int TextAppearance_AppCompat_Display1 = 2131493056;
-
- // aapt resource value: 0x7F0C00C1
- public const int TextAppearance_AppCompat_Display2 = 2131493057;
-
- // aapt resource value: 0x7F0C00C2
- public const int TextAppearance_AppCompat_Display3 = 2131493058;
-
- // aapt resource value: 0x7F0C00C3
- public const int TextAppearance_AppCompat_Display4 = 2131493059;
-
- // aapt resource value: 0x7F0C00C4
- public const int TextAppearance_AppCompat_Headline = 2131493060;
-
- // aapt resource value: 0x7F0C00C5
- public const int TextAppearance_AppCompat_Inverse = 2131493061;
-
- // aapt resource value: 0x7F0C00C6
- public const int TextAppearance_AppCompat_Large = 2131493062;
-
- // aapt resource value: 0x7F0C00C7
- public const int TextAppearance_AppCompat_Large_Inverse = 2131493063;
-
- // aapt resource value: 0x7F0C00C8
- public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131493064;
-
- // aapt resource value: 0x7F0C00C9
- public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131493065;
-
- // aapt resource value: 0x7F0C00CA
- public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131493066;
-
- // aapt resource value: 0x7F0C00CB
- public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131493067;
-
- // aapt resource value: 0x7F0C00CC
- public const int TextAppearance_AppCompat_Medium = 2131493068;
-
- // aapt resource value: 0x7F0C00CD
- public const int TextAppearance_AppCompat_Medium_Inverse = 2131493069;
-
- // aapt resource value: 0x7F0C00CE
- public const int TextAppearance_AppCompat_Menu = 2131493070;
-
- // aapt resource value: 0x7F0C00CF
- public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131493071;
-
- // aapt resource value: 0x7F0C00D0
- public const int TextAppearance_AppCompat_SearchResult_Title = 2131493072;
-
- // aapt resource value: 0x7F0C00D1
- public const int TextAppearance_AppCompat_Small = 2131493073;
-
- // aapt resource value: 0x7F0C00D2
- public const int TextAppearance_AppCompat_Small_Inverse = 2131493074;
-
- // aapt resource value: 0x7F0C00D3
- public const int TextAppearance_AppCompat_Subhead = 2131493075;
-
- // aapt resource value: 0x7F0C00D4
- public const int TextAppearance_AppCompat_Subhead_Inverse = 2131493076;
-
- // aapt resource value: 0x7F0C00D5
- public const int TextAppearance_AppCompat_Title = 2131493077;
-
- // aapt resource value: 0x7F0C00D6
- public const int TextAppearance_AppCompat_Title_Inverse = 2131493078;
-
- // aapt resource value: 0x7F0C00D7
- public const int TextAppearance_AppCompat_Tooltip = 2131493079;
-
- // aapt resource value: 0x7F0C00D8
- public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131493080;
-
- // aapt resource value: 0x7F0C00D9
- public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131493081;
-
- // aapt resource value: 0x7F0C00DA
- public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131493082;
-
- // aapt resource value: 0x7F0C00DB
- public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131493083;
-
- // aapt resource value: 0x7F0C00DC
- public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131493084;
-
- // aapt resource value: 0x7F0C00DD
- public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131493085;
-
- // aapt resource value: 0x7F0C00DE
- public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131493086;
-
- // aapt resource value: 0x7F0C00DF
- public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131493087;
-
- // aapt resource value: 0x7F0C00E0
- public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131493088;
-
- // aapt resource value: 0x7F0C00E1
- public const int TextAppearance_AppCompat_Widget_Button = 2131493089;
-
- // aapt resource value: 0x7F0C00E2
- public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131493090;
-
- // aapt resource value: 0x7F0C00E3
- public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131493091;
-
- // aapt resource value: 0x7F0C00E4
- public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131493092;
-
- // aapt resource value: 0x7F0C00E5
- public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131493093;
-
- // aapt resource value: 0x7F0C00E6
- public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131493094;
-
- // aapt resource value: 0x7F0C00E7
- public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131493095;
-
- // aapt resource value: 0x7F0C00E8
- public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131493096;
-
- // aapt resource value: 0x7F0C00E9
- public const int TextAppearance_AppCompat_Widget_Switch = 2131493097;
-
- // aapt resource value: 0x7F0C00EA
- public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131493098;
-
- // aapt resource value: 0x7F0C00EB
- public const int TextAppearance_Compat_Notification = 2131493099;
-
- // aapt resource value: 0x7F0C00EC
- public const int TextAppearance_Compat_Notification_Info = 2131493100;
-
- // aapt resource value: 0x7F0C00ED
- public const int TextAppearance_Compat_Notification_Line2 = 2131493101;
-
- // aapt resource value: 0x7F0C00EE
- public const int TextAppearance_Compat_Notification_Time = 2131493102;
-
- // aapt resource value: 0x7F0C00EF
- public const int TextAppearance_Compat_Notification_Title = 2131493103;
-
- // aapt resource value: 0x7F0C00F0
- public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131493104;
-
- // aapt resource value: 0x7F0C00F1
- public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131493105;
-
- // aapt resource value: 0x7F0C00F2
- public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131493106;
-
- // aapt resource value: 0x7F0C0108
- public const int ThemeOverlay_AppCompat = 2131493128;
-
- // aapt resource value: 0x7F0C0109
- public const int ThemeOverlay_AppCompat_ActionBar = 2131493129;
-
- // aapt resource value: 0x7F0C010A
- public const int ThemeOverlay_AppCompat_Dark = 2131493130;
-
- // aapt resource value: 0x7F0C010B
- public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131493131;
-
- // aapt resource value: 0x7F0C010C
- public const int ThemeOverlay_AppCompat_Dialog = 2131493132;
-
- // aapt resource value: 0x7F0C010D
- public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131493133;
-
- // aapt resource value: 0x7F0C010E
- public const int ThemeOverlay_AppCompat_Light = 2131493134;
-
- // aapt resource value: 0x7F0C00F3
- public const int Theme_AppCompat = 2131493107;
-
- // aapt resource value: 0x7F0C00F4
- public const int Theme_AppCompat_CompactMenu = 2131493108;
-
- // aapt resource value: 0x7F0C00F5
- public const int Theme_AppCompat_DayNight = 2131493109;
-
- // aapt resource value: 0x7F0C00F6
- public const int Theme_AppCompat_DayNight_DarkActionBar = 2131493110;
-
- // aapt resource value: 0x7F0C00F7
- public const int Theme_AppCompat_DayNight_Dialog = 2131493111;
-
- // aapt resource value: 0x7F0C00FA
- public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131493114;
-
- // aapt resource value: 0x7F0C00F8
- public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131493112;
-
- // aapt resource value: 0x7F0C00F9
- public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131493113;
-
- // aapt resource value: 0x7F0C00FB
- public const int Theme_AppCompat_DayNight_NoActionBar = 2131493115;
-
- // aapt resource value: 0x7F0C00FC
- public const int Theme_AppCompat_Dialog = 2131493116;
-
- // aapt resource value: 0x7F0C00FF
- public const int Theme_AppCompat_DialogWhenLarge = 2131493119;
-
- // aapt resource value: 0x7F0C00FD
- public const int Theme_AppCompat_Dialog_Alert = 2131493117;
-
- // aapt resource value: 0x7F0C00FE
- public const int Theme_AppCompat_Dialog_MinWidth = 2131493118;
-
- // aapt resource value: 0x7F0C0100
- public const int Theme_AppCompat_Light = 2131493120;
-
- // aapt resource value: 0x7F0C0101
- public const int Theme_AppCompat_Light_DarkActionBar = 2131493121;
-
- // aapt resource value: 0x7F0C0102
- public const int Theme_AppCompat_Light_Dialog = 2131493122;
-
- // aapt resource value: 0x7F0C0105
- public const int Theme_AppCompat_Light_DialogWhenLarge = 2131493125;
-
- // aapt resource value: 0x7F0C0103
- public const int Theme_AppCompat_Light_Dialog_Alert = 2131493123;
-
- // aapt resource value: 0x7F0C0104
- public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131493124;
-
- // aapt resource value: 0x7F0C0106
- public const int Theme_AppCompat_Light_NoActionBar = 2131493126;
-
- // aapt resource value: 0x7F0C0107
- public const int Theme_AppCompat_NoActionBar = 2131493127;
-
- // aapt resource value: 0x7F0C010F
- public const int Widget_AppCompat_ActionBar = 2131493135;
-
- // aapt resource value: 0x7F0C0110
- public const int Widget_AppCompat_ActionBar_Solid = 2131493136;
-
- // aapt resource value: 0x7F0C0111
- public const int Widget_AppCompat_ActionBar_TabBar = 2131493137;
-
- // aapt resource value: 0x7F0C0112
- public const int Widget_AppCompat_ActionBar_TabText = 2131493138;
-
- // aapt resource value: 0x7F0C0113
- public const int Widget_AppCompat_ActionBar_TabView = 2131493139;
-
- // aapt resource value: 0x7F0C0114
- public const int Widget_AppCompat_ActionButton = 2131493140;
-
- // aapt resource value: 0x7F0C0115
- public const int Widget_AppCompat_ActionButton_CloseMode = 2131493141;
-
- // aapt resource value: 0x7F0C0116
- public const int Widget_AppCompat_ActionButton_Overflow = 2131493142;
-
- // aapt resource value: 0x7F0C0117
- public const int Widget_AppCompat_ActionMode = 2131493143;
-
- // aapt resource value: 0x7F0C0118
- public const int Widget_AppCompat_ActivityChooserView = 2131493144;
-
- // aapt resource value: 0x7F0C0119
- public const int Widget_AppCompat_AutoCompleteTextView = 2131493145;
-
- // aapt resource value: 0x7F0C011A
- public const int Widget_AppCompat_Button = 2131493146;
-
- // aapt resource value: 0x7F0C0120
- public const int Widget_AppCompat_ButtonBar = 2131493152;
-
- // aapt resource value: 0x7F0C0121
- public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131493153;
-
- // aapt resource value: 0x7F0C011B
- public const int Widget_AppCompat_Button_Borderless = 2131493147;
-
- // aapt resource value: 0x7F0C011C
- public const int Widget_AppCompat_Button_Borderless_Colored = 2131493148;
-
- // aapt resource value: 0x7F0C011D
- public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131493149;
-
- // aapt resource value: 0x7F0C011E
- public const int Widget_AppCompat_Button_Colored = 2131493150;
-
- // aapt resource value: 0x7F0C011F
- public const int Widget_AppCompat_Button_Small = 2131493151;
-
- // aapt resource value: 0x7F0C0122
- public const int Widget_AppCompat_CompoundButton_CheckBox = 2131493154;
-
- // aapt resource value: 0x7F0C0123
- public const int Widget_AppCompat_CompoundButton_RadioButton = 2131493155;
-
- // aapt resource value: 0x7F0C0124
- public const int Widget_AppCompat_CompoundButton_Switch = 2131493156;
-
- // aapt resource value: 0x7F0C0125
- public const int Widget_AppCompat_DrawerArrowToggle = 2131493157;
-
- // aapt resource value: 0x7F0C0126
- public const int Widget_AppCompat_DropDownItem_Spinner = 2131493158;
-
- // aapt resource value: 0x7F0C0127
- public const int Widget_AppCompat_EditText = 2131493159;
-
- // aapt resource value: 0x7F0C0128
- public const int Widget_AppCompat_ImageButton = 2131493160;
-
- // aapt resource value: 0x7F0C0129
- public const int Widget_AppCompat_Light_ActionBar = 2131493161;
-
- // aapt resource value: 0x7F0C012A
- public const int Widget_AppCompat_Light_ActionBar_Solid = 2131493162;
-
- // aapt resource value: 0x7F0C012B
- public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131493163;
-
- // aapt resource value: 0x7F0C012C
- public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131493164;
-
- // aapt resource value: 0x7F0C012D
- public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131493165;
-
- // aapt resource value: 0x7F0C012E
- public const int Widget_AppCompat_Light_ActionBar_TabText = 2131493166;
-
- // aapt resource value: 0x7F0C012F
- public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131493167;
-
- // aapt resource value: 0x7F0C0130
- public const int Widget_AppCompat_Light_ActionBar_TabView = 2131493168;
-
- // aapt resource value: 0x7F0C0131
- public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131493169;
-
- // aapt resource value: 0x7F0C0132
- public const int Widget_AppCompat_Light_ActionButton = 2131493170;
-
- // aapt resource value: 0x7F0C0133
- public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131493171;
-
- // aapt resource value: 0x7F0C0134
- public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131493172;
-
- // aapt resource value: 0x7F0C0135
- public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131493173;
-
- // aapt resource value: 0x7F0C0136
- public const int Widget_AppCompat_Light_ActivityChooserView = 2131493174;
-
- // aapt resource value: 0x7F0C0137
- public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131493175;
-
- // aapt resource value: 0x7F0C0138
- public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131493176;
-
- // aapt resource value: 0x7F0C0139
- public const int Widget_AppCompat_Light_ListPopupWindow = 2131493177;
-
- // aapt resource value: 0x7F0C013A
- public const int Widget_AppCompat_Light_ListView_DropDown = 2131493178;
-
- // aapt resource value: 0x7F0C013B
- public const int Widget_AppCompat_Light_PopupMenu = 2131493179;
-
- // aapt resource value: 0x7F0C013C
- public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131493180;
-
- // aapt resource value: 0x7F0C013D
- public const int Widget_AppCompat_Light_SearchView = 2131493181;
-
- // aapt resource value: 0x7F0C013E
- public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131493182;
-
- // aapt resource value: 0x7F0C013F
- public const int Widget_AppCompat_ListMenuView = 2131493183;
-
- // aapt resource value: 0x7F0C0140
- public const int Widget_AppCompat_ListPopupWindow = 2131493184;
-
- // aapt resource value: 0x7F0C0141
- public const int Widget_AppCompat_ListView = 2131493185;
-
- // aapt resource value: 0x7F0C0142
- public const int Widget_AppCompat_ListView_DropDown = 2131493186;
-
- // aapt resource value: 0x7F0C0143
- public const int Widget_AppCompat_ListView_Menu = 2131493187;
-
- // aapt resource value: 0x7F0C0144
- public const int Widget_AppCompat_PopupMenu = 2131493188;
-
- // aapt resource value: 0x7F0C0145
- public const int Widget_AppCompat_PopupMenu_Overflow = 2131493189;
-
- // aapt resource value: 0x7F0C0146
- public const int Widget_AppCompat_PopupWindow = 2131493190;
-
- // aapt resource value: 0x7F0C0147
- public const int Widget_AppCompat_ProgressBar = 2131493191;
-
- // aapt resource value: 0x7F0C0148
- public const int Widget_AppCompat_ProgressBar_Horizontal = 2131493192;
-
- // aapt resource value: 0x7F0C0149
- public const int Widget_AppCompat_RatingBar = 2131493193;
-
- // aapt resource value: 0x7F0C014A
- public const int Widget_AppCompat_RatingBar_Indicator = 2131493194;
-
- // aapt resource value: 0x7F0C014B
- public const int Widget_AppCompat_RatingBar_Small = 2131493195;
-
- // aapt resource value: 0x7F0C014C
- public const int Widget_AppCompat_SearchView = 2131493196;
-
- // aapt resource value: 0x7F0C014D
- public const int Widget_AppCompat_SearchView_ActionBar = 2131493197;
-
- // aapt resource value: 0x7F0C014E
- public const int Widget_AppCompat_SeekBar = 2131493198;
-
- // aapt resource value: 0x7F0C014F
- public const int Widget_AppCompat_SeekBar_Discrete = 2131493199;
-
- // aapt resource value: 0x7F0C0150
- public const int Widget_AppCompat_Spinner = 2131493200;
-
- // aapt resource value: 0x7F0C0151
- public const int Widget_AppCompat_Spinner_DropDown = 2131493201;
-
- // aapt resource value: 0x7F0C0152
- public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131493202;
-
- // aapt resource value: 0x7F0C0153
- public const int Widget_AppCompat_Spinner_Underlined = 2131493203;
-
- // aapt resource value: 0x7F0C0154
- public const int Widget_AppCompat_TextView_SpinnerItem = 2131493204;
-
- // aapt resource value: 0x7F0C0155
- public const int Widget_AppCompat_Toolbar = 2131493205;
-
- // aapt resource value: 0x7F0C0156
- public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131493206;
-
- // aapt resource value: 0x7F0C0157
- public const int Widget_Compat_NotificationActionContainer = 2131493207;
-
- // aapt resource value: 0x7F0C0158
- public const int Widget_Compat_NotificationActionText = 2131493208;
-
- // aapt resource value: 0x7F0C0159
- public const int Widget_Support_CoordinatorLayout = 2131493209;
-
- static Style()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Style()
- {
- }
- }
-
- public partial class Styleable
- {
-
- // aapt resource value: { 0x7F020031,0x7F020032,0x7F020033,0x7F020057,0x7F020058,0x7F020059,0x7F02005A,0x7F02005B,0x7F02005C,0x7F02005F,0x7F020064,0x7F020065,0x7F020070,0x7F020080,0x7F020081,0x7F020082,0x7F020083,0x7F020084,0x7F020089,0x7F02008C,0x7F0200A2,0x7F0200A9,0x7F0200B4,0x7F0200B7,0x7F0200B8,0x7F0200D3,0x7F0200D6,0x7F0200F1,0x7F0200FA }
- public static int[] ActionBar = new int[] {
- 2130837553,
- 2130837554,
- 2130837555,
- 2130837591,
- 2130837592,
- 2130837593,
- 2130837594,
- 2130837595,
- 2130837596,
- 2130837599,
- 2130837604,
- 2130837605,
- 2130837616,
- 2130837632,
- 2130837633,
- 2130837634,
- 2130837635,
- 2130837636,
- 2130837641,
- 2130837644,
- 2130837666,
- 2130837673,
- 2130837684,
- 2130837687,
- 2130837688,
- 2130837715,
- 2130837718,
- 2130837745,
- 2130837754};
-
- // aapt resource value: { 0x10100B3 }
- public static int[] ActionBarLayout = new int[] {
- 16842931};
-
- // aapt resource value: 0
- public const int ActionBarLayout_android_layout_gravity = 0;
-
- // aapt resource value: 0
- public const int ActionBar_background = 0;
-
- // aapt resource value: 1
- public const int ActionBar_backgroundSplit = 1;
-
- // aapt resource value: 2
- public const int ActionBar_backgroundStacked = 2;
-
- // aapt resource value: 3
- public const int ActionBar_contentInsetEnd = 3;
-
- // aapt resource value: 4
- public const int ActionBar_contentInsetEndWithActions = 4;
-
- // aapt resource value: 5
- public const int ActionBar_contentInsetLeft = 5;
-
- // aapt resource value: 6
- public const int ActionBar_contentInsetRight = 6;
-
- // aapt resource value: 7
- public const int ActionBar_contentInsetStart = 7;
-
- // aapt resource value: 8
- public const int ActionBar_contentInsetStartWithNavigation = 8;
-
- // aapt resource value: 9
- public const int ActionBar_customNavigationLayout = 9;
-
- // aapt resource value: 10
- public const int ActionBar_displayOptions = 10;
-
- // aapt resource value: 11
- public const int ActionBar_divider = 11;
-
- // aapt resource value: 12
- public const int ActionBar_elevation = 12;
-
- // aapt resource value: 13
- public const int ActionBar_height = 13;
-
- // aapt resource value: 14
- public const int ActionBar_hideOnContentScroll = 14;
-
- // aapt resource value: 15
- public const int ActionBar_homeAsUpIndicator = 15;
-
- // aapt resource value: 16
- public const int ActionBar_homeLayout = 16;
-
- // aapt resource value: 17
- public const int ActionBar_icon = 17;
-
- // aapt resource value: 18
- public const int ActionBar_indeterminateProgressStyle = 18;
-
- // aapt resource value: 19
- public const int ActionBar_itemPadding = 19;
-
- // aapt resource value: 20
- public const int ActionBar_logo = 20;
-
- // aapt resource value: 21
- public const int ActionBar_navigationMode = 21;
-
- // aapt resource value: 22
- public const int ActionBar_popupTheme = 22;
-
- // aapt resource value: 23
- public const int ActionBar_progressBarPadding = 23;
-
- // aapt resource value: 24
- public const int ActionBar_progressBarStyle = 24;
-
- // aapt resource value: 25
- public const int ActionBar_subtitle = 25;
-
- // aapt resource value: 26
- public const int ActionBar_subtitleTextStyle = 26;
-
- // aapt resource value: 27
- public const int ActionBar_title = 27;
-
- // aapt resource value: 28
- public const int ActionBar_titleTextStyle = 28;
-
- // aapt resource value: { 0x101013F }
- public static int[] ActionMenuItemView = new int[] {
- 16843071};
-
- // aapt resource value: 0
- public const int ActionMenuItemView_android_minWidth = 0;
-
- // aapt resource value: { 0xFFFFFFFF }
- public static int[] ActionMenuView = new int[] {
- -1};
-
- // aapt resource value: { 0x7F020031,0x7F020032,0x7F020047,0x7F020080,0x7F0200D6,0x7F0200FA }
- public static int[] ActionMode = new int[] {
- 2130837553,
- 2130837554,
- 2130837575,
- 2130837632,
- 2130837718,
- 2130837754};
-
- // aapt resource value: 0
- public const int ActionMode_background = 0;
-
- // aapt resource value: 1
- public const int ActionMode_backgroundSplit = 1;
-
- // aapt resource value: 2
- public const int ActionMode_closeItemLayout = 2;
-
- // aapt resource value: 3
- public const int ActionMode_height = 3;
-
- // aapt resource value: 4
- public const int ActionMode_subtitleTextStyle = 4;
-
- // aapt resource value: 5
- public const int ActionMode_titleTextStyle = 5;
-
- // aapt resource value: { 0x7F020071,0x7F02008A }
- public static int[] ActivityChooserView = new int[] {
- 2130837617,
- 2130837642};
-
- // aapt resource value: 0
- public const int ActivityChooserView_expandActivityOverflowButtonDrawable = 0;
-
- // aapt resource value: 1
- public const int ActivityChooserView_initialActivityCount = 1;
-
- // aapt resource value: { 0x10100F2,0x7F02003E,0x7F02003F,0x7F020099,0x7F02009A,0x7F0200A6,0x7F0200C8,0x7F0200C9 }
- public static int[] AlertDialog = new int[] {
- 16842994,
- 2130837566,
- 2130837567,
- 2130837657,
- 2130837658,
- 2130837670,
- 2130837704,
- 2130837705};
-
- // aapt resource value: 0
- public const int AlertDialog_android_layout = 0;
-
- // aapt resource value: 1
- public const int AlertDialog_buttonIconDimen = 1;
-
- // aapt resource value: 2
- public const int AlertDialog_buttonPanelSideLayout = 2;
-
- // aapt resource value: 3
- public const int AlertDialog_listItemLayout = 3;
-
- // aapt resource value: 4
- public const int AlertDialog_listLayout = 4;
-
- // aapt resource value: 5
- public const int AlertDialog_multiChoiceItemLayout = 5;
-
- // aapt resource value: 6
- public const int AlertDialog_showTitle = 6;
-
- // aapt resource value: 7
- public const int AlertDialog_singleChoiceItemLayout = 7;
-
- // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D }
- public static int[] AnimatedStateListDrawableCompat = new int[] {
- 16843036,
- 16843156,
- 16843157,
- 16843158,
- 16843532,
- 16843533};
-
- // aapt resource value: 3
- public const int AnimatedStateListDrawableCompat_android_constantSize = 3;
-
- // aapt resource value: 0
- public const int AnimatedStateListDrawableCompat_android_dither = 0;
-
- // aapt resource value: 4
- public const int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4;
-
- // aapt resource value: 5
- public const int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5;
-
- // aapt resource value: 2
- public const int AnimatedStateListDrawableCompat_android_variablePadding = 2;
-
- // aapt resource value: 1
- public const int AnimatedStateListDrawableCompat_android_visible = 1;
-
- // aapt resource value: { 0x10100D0,0x1010199 }
- public static int[] AnimatedStateListDrawableItem = new int[] {
- 16842960,
- 16843161};
-
- // aapt resource value: 1
- public const int AnimatedStateListDrawableItem_android_drawable = 1;
-
- // aapt resource value: 0
- public const int AnimatedStateListDrawableItem_android_id = 0;
-
- // aapt resource value: { 0x1010199,0x1010449,0x101044A,0x101044B }
- public static int[] AnimatedStateListDrawableTransition = new int[] {
- 16843161,
- 16843849,
- 16843850,
- 16843851};
-
- // aapt resource value: 0
- public const int AnimatedStateListDrawableTransition_android_drawable = 0;
-
- // aapt resource value: 2
- public const int AnimatedStateListDrawableTransition_android_fromId = 2;
-
- // aapt resource value: 3
- public const int AnimatedStateListDrawableTransition_android_reversible = 3;
-
- // aapt resource value: 1
- public const int AnimatedStateListDrawableTransition_android_toId = 1;
-
- // aapt resource value: { 0x1010119,0x7F0200CE,0x7F0200EF,0x7F0200F0 }
- public static int[] AppCompatImageView = new int[] {
- 16843033,
- 2130837710,
- 2130837743,
- 2130837744};
-
- // aapt resource value: 0
- public const int AppCompatImageView_android_src = 0;
-
- // aapt resource value: 1
- public const int AppCompatImageView_srcCompat = 1;
-
- // aapt resource value: 2
- public const int AppCompatImageView_tint = 2;
-
- // aapt resource value: 3
- public const int AppCompatImageView_tintMode = 3;
-
- // aapt resource value: { 0x1010142,0x7F0200EC,0x7F0200ED,0x7F0200EE }
- public static int[] AppCompatSeekBar = new int[] {
- 16843074,
- 2130837740,
- 2130837741,
- 2130837742};
-
- // aapt resource value: 0
- public const int AppCompatSeekBar_android_thumb = 0;
-
- // aapt resource value: 1
- public const int AppCompatSeekBar_tickMark = 1;
-
- // aapt resource value: 2
- public const int AppCompatSeekBar_tickMarkTint = 2;
-
- // aapt resource value: 3
- public const int AppCompatSeekBar_tickMarkTintMode = 3;
-
- // aapt resource value: { 0x1010034,0x101016D,0x101016E,0x101016F,0x1010170,0x1010392,0x1010393 }
- public static int[] AppCompatTextHelper = new int[] {
- 16842804,
- 16843117,
- 16843118,
- 16843119,
- 16843120,
- 16843666,
- 16843667};
-
- // aapt resource value: 2
- public const int AppCompatTextHelper_android_drawableBottom = 2;
-
- // aapt resource value: 6
- public const int AppCompatTextHelper_android_drawableEnd = 6;
-
- // aapt resource value: 3
- public const int AppCompatTextHelper_android_drawableLeft = 3;
-
- // aapt resource value: 4
- public const int AppCompatTextHelper_android_drawableRight = 4;
-
- // aapt resource value: 5
- public const int AppCompatTextHelper_android_drawableStart = 5;
-
- // aapt resource value: 1
- public const int AppCompatTextHelper_android_drawableTop = 1;
-
- // aapt resource value: 0
- public const int AppCompatTextHelper_android_textAppearance = 0;
-
- // aapt resource value: { 0x1010034,0x7F02002C,0x7F02002D,0x7F02002E,0x7F02002F,0x7F020030,0x7F020072,0x7F020074,0x7F02008E,0x7F020096,0x7F0200DC }
- public static int[] AppCompatTextView = new int[] {
- 16842804,
- 2130837548,
- 2130837549,
- 2130837550,
- 2130837551,
- 2130837552,
- 2130837618,
- 2130837620,
- 2130837646,
- 2130837654,
- 2130837724};
-
- // aapt resource value: 0
- public const int AppCompatTextView_android_textAppearance = 0;
-
- // aapt resource value: 1
- public const int AppCompatTextView_autoSizeMaxTextSize = 1;
-
- // aapt resource value: 2
- public const int AppCompatTextView_autoSizeMinTextSize = 2;
-
- // aapt resource value: 3
- public const int AppCompatTextView_autoSizePresetSizes = 3;
-
- // aapt resource value: 4
- public const int AppCompatTextView_autoSizeStepGranularity = 4;
-
- // aapt resource value: 5
- public const int AppCompatTextView_autoSizeTextType = 5;
-
- // aapt resource value: 6
- public const int AppCompatTextView_firstBaselineToTopHeight = 6;
-
- // aapt resource value: 7
- public const int AppCompatTextView_fontFamily = 7;
-
- // aapt resource value: 8
- public const int AppCompatTextView_lastBaselineToBottomHeight = 8;
-
- // aapt resource value: 9
- public const int AppCompatTextView_lineHeight = 9;
-
- // aapt resource value: 10
- public const int AppCompatTextView_textAllCaps = 10;
-
- // aapt resource value: { 0x1010057,0x10100AE,0x7F020000,0x7F020001,0x7F020002,0x7F020003,0x7F020004,0x7F020005,0x7F020006,0x7F020007,0x7F020008,0x7F020009,0x7F02000A,0x7F02000B,0x7F02000C,0x7F02000E,0x7F02000F,0x7F020010,0x7F020011,0x7F020012,0x7F020013,0x7F020014,0x7F020015,0x7F020016,0x7F020017,0x7F020018,0x7F020019,0x7F02001A,0x7F02001B,0x7F02001C,0x7F02001D,0x7F02001E,0x7F020021,0x7F020022,0x7F020023,0x7F020024,0x7F020025,0x7F02002B,0x7F020037,0x7F020038,0x7F020039,0x7F02003A,0x7F02003B,0x7F02003C,0x7F020040,0x7F020041,0x7F020044,0x7F020045,0x7F02004B,0x7F02004C,0x7F02004D,0x7F02004E,0x7F02004F,0x7F020050,0x7F020051,0x7F020052,0x7F020053,0x7F020054,0x7F02005D,0x7F020061,0x7F020062,0x7F020063,0x7F020066,0x7F020068,0x7F02006B,0x7F02006C,0x7F02006D,0x7F02006E,0x7F02006F,0x7F020082,0x7F020088,0x7F020097,0x7F020098,0x7F02009B,0x7F02009C,0x7F02009D,0x7F02009E,0x7F02009F,0x7F0200A0,0x7F0200A1,0x7F0200B0,0x7F0200B1,0x7F0200B2,0x7F0200B3,0x7F0200B5,0x7F0200BB,0x7F0200BC,0x7F0200BD,0x7F0200BE,0x7F0200C1,0x7F0200C2,0x7F0200C3,0x7F0200C4,0x7F0200CB,0x7F0200CC,0x7F0200DA,0x7F0200DD,0x7F0200DE,0x7F0200DF,0x7F0200E0,0x7F0200E1,0x7F0200E2,0x7F0200E3,0x7F0200E4,0x7F0200E5,0x7F0200E6,0x7F0200FB,0x7F0200FC,0x7F0200FD,0x7F0200FE,0x7F020104,0x7F020106,0x7F020107,0x7F020108,0x7F020109,0x7F02010A,0x7F02010B,0x7F02010C,0x7F02010D,0x7F02010E,0x7F02010F }
- public static int[] AppCompatTheme = new int[] {
- 16842839,
- 16842926,
- 2130837504,
- 2130837505,
- 2130837506,
- 2130837507,
- 2130837508,
- 2130837509,
- 2130837510,
- 2130837511,
- 2130837512,
- 2130837513,
- 2130837514,
- 2130837515,
- 2130837516,
- 2130837518,
- 2130837519,
- 2130837520,
- 2130837521,
- 2130837522,
- 2130837523,
- 2130837524,
- 2130837525,
- 2130837526,
- 2130837527,
- 2130837528,
- 2130837529,
- 2130837530,
- 2130837531,
- 2130837532,
- 2130837533,
- 2130837534,
- 2130837537,
- 2130837538,
- 2130837539,
- 2130837540,
- 2130837541,
- 2130837547,
- 2130837559,
- 2130837560,
- 2130837561,
- 2130837562,
- 2130837563,
- 2130837564,
- 2130837568,
- 2130837569,
- 2130837572,
- 2130837573,
- 2130837579,
- 2130837580,
- 2130837581,
- 2130837582,
- 2130837583,
- 2130837584,
- 2130837585,
- 2130837586,
- 2130837587,
- 2130837588,
- 2130837597,
- 2130837601,
- 2130837602,
- 2130837603,
- 2130837606,
- 2130837608,
- 2130837611,
- 2130837612,
- 2130837613,
- 2130837614,
- 2130837615,
- 2130837634,
- 2130837640,
- 2130837655,
- 2130837656,
- 2130837659,
- 2130837660,
- 2130837661,
- 2130837662,
- 2130837663,
- 2130837664,
- 2130837665,
- 2130837680,
- 2130837681,
- 2130837682,
- 2130837683,
- 2130837685,
- 2130837691,
- 2130837692,
- 2130837693,
- 2130837694,
- 2130837697,
- 2130837698,
- 2130837699,
- 2130837700,
- 2130837707,
- 2130837708,
- 2130837722,
- 2130837725,
- 2130837726,
- 2130837727,
- 2130837728,
- 2130837729,
- 2130837730,
- 2130837731,
- 2130837732,
- 2130837733,
- 2130837734,
- 2130837755,
- 2130837756,
- 2130837757,
- 2130837758,
- 2130837764,
- 2130837766,
- 2130837767,
- 2130837768,
- 2130837769,
- 2130837770,
- 2130837771,
- 2130837772,
- 2130837773,
- 2130837774,
- 2130837775};
-
- // aapt resource value: 2
- public const int AppCompatTheme_actionBarDivider = 2;
-
- // aapt resource value: 3
- public const int AppCompatTheme_actionBarItemBackground = 3;
-
- // aapt resource value: 4
- public const int AppCompatTheme_actionBarPopupTheme = 4;
-
- // aapt resource value: 5
- public const int AppCompatTheme_actionBarSize = 5;
-
- // aapt resource value: 6
- public const int AppCompatTheme_actionBarSplitStyle = 6;
-
- // aapt resource value: 7
- public const int AppCompatTheme_actionBarStyle = 7;
-
- // aapt resource value: 8
- public const int AppCompatTheme_actionBarTabBarStyle = 8;
-
- // aapt resource value: 9
- public const int AppCompatTheme_actionBarTabStyle = 9;
-
- // aapt resource value: 10
- public const int AppCompatTheme_actionBarTabTextStyle = 10;
-
- // aapt resource value: 11
- public const int AppCompatTheme_actionBarTheme = 11;
-
- // aapt resource value: 12
- public const int AppCompatTheme_actionBarWidgetTheme = 12;
-
- // aapt resource value: 13
- public const int AppCompatTheme_actionButtonStyle = 13;
-
- // aapt resource value: 14
- public const int AppCompatTheme_actionDropDownStyle = 14;
-
- // aapt resource value: 15
- public const int AppCompatTheme_actionMenuTextAppearance = 15;
-
- // aapt resource value: 16
- public const int AppCompatTheme_actionMenuTextColor = 16;
-
- // aapt resource value: 17
- public const int AppCompatTheme_actionModeBackground = 17;
-
- // aapt resource value: 18
- public const int AppCompatTheme_actionModeCloseButtonStyle = 18;
-
- // aapt resource value: 19
- public const int AppCompatTheme_actionModeCloseDrawable = 19;
-
- // aapt resource value: 20
- public const int AppCompatTheme_actionModeCopyDrawable = 20;
-
- // aapt resource value: 21
- public const int AppCompatTheme_actionModeCutDrawable = 21;
-
- // aapt resource value: 22
- public const int AppCompatTheme_actionModeFindDrawable = 22;
-
- // aapt resource value: 23
- public const int AppCompatTheme_actionModePasteDrawable = 23;
-
- // aapt resource value: 24
- public const int AppCompatTheme_actionModePopupWindowStyle = 24;
-
- // aapt resource value: 25
- public const int AppCompatTheme_actionModeSelectAllDrawable = 25;
-
- // aapt resource value: 26
- public const int AppCompatTheme_actionModeShareDrawable = 26;
-
- // aapt resource value: 27
- public const int AppCompatTheme_actionModeSplitBackground = 27;
-
- // aapt resource value: 28
- public const int AppCompatTheme_actionModeStyle = 28;
-
- // aapt resource value: 29
- public const int AppCompatTheme_actionModeWebSearchDrawable = 29;
-
- // aapt resource value: 30
- public const int AppCompatTheme_actionOverflowButtonStyle = 30;
-
- // aapt resource value: 31
- public const int AppCompatTheme_actionOverflowMenuStyle = 31;
-
- // aapt resource value: 32
- public const int AppCompatTheme_activityChooserViewStyle = 32;
-
- // aapt resource value: 33
- public const int AppCompatTheme_alertDialogButtonGroupStyle = 33;
-
- // aapt resource value: 34
- public const int AppCompatTheme_alertDialogCenterButtons = 34;
-
- // aapt resource value: 35
- public const int AppCompatTheme_alertDialogStyle = 35;
-
- // aapt resource value: 36
- public const int AppCompatTheme_alertDialogTheme = 36;
-
- // aapt resource value: 1
- public const int AppCompatTheme_android_windowAnimationStyle = 1;
-
- // aapt resource value: 0
- public const int AppCompatTheme_android_windowIsFloating = 0;
-
- // aapt resource value: 37
- public const int AppCompatTheme_autoCompleteTextViewStyle = 37;
-
- // aapt resource value: 38
- public const int AppCompatTheme_borderlessButtonStyle = 38;
-
- // aapt resource value: 39
- public const int AppCompatTheme_buttonBarButtonStyle = 39;
-
- // aapt resource value: 40
- public const int AppCompatTheme_buttonBarNegativeButtonStyle = 40;
-
- // aapt resource value: 41
- public const int AppCompatTheme_buttonBarNeutralButtonStyle = 41;
-
- // aapt resource value: 42
- public const int AppCompatTheme_buttonBarPositiveButtonStyle = 42;
-
- // aapt resource value: 43
- public const int AppCompatTheme_buttonBarStyle = 43;
-
- // aapt resource value: 44
- public const int AppCompatTheme_buttonStyle = 44;
-
- // aapt resource value: 45
- public const int AppCompatTheme_buttonStyleSmall = 45;
-
- // aapt resource value: 46
- public const int AppCompatTheme_checkboxStyle = 46;
-
- // aapt resource value: 47
- public const int AppCompatTheme_checkedTextViewStyle = 47;
-
- // aapt resource value: 48
- public const int AppCompatTheme_colorAccent = 48;
-
- // aapt resource value: 49
- public const int AppCompatTheme_colorBackgroundFloating = 49;
-
- // aapt resource value: 50
- public const int AppCompatTheme_colorButtonNormal = 50;
-
- // aapt resource value: 51
- public const int AppCompatTheme_colorControlActivated = 51;
-
- // aapt resource value: 52
- public const int AppCompatTheme_colorControlHighlight = 52;
-
- // aapt resource value: 53
- public const int AppCompatTheme_colorControlNormal = 53;
-
- // aapt resource value: 54
- public const int AppCompatTheme_colorError = 54;
-
- // aapt resource value: 55
- public const int AppCompatTheme_colorPrimary = 55;
-
- // aapt resource value: 56
- public const int AppCompatTheme_colorPrimaryDark = 56;
-
- // aapt resource value: 57
- public const int AppCompatTheme_colorSwitchThumbNormal = 57;
-
- // aapt resource value: 58
- public const int AppCompatTheme_controlBackground = 58;
-
- // aapt resource value: 59
- public const int AppCompatTheme_dialogCornerRadius = 59;
-
- // aapt resource value: 60
- public const int AppCompatTheme_dialogPreferredPadding = 60;
-
- // aapt resource value: 61
- public const int AppCompatTheme_dialogTheme = 61;
-
- // aapt resource value: 62
- public const int AppCompatTheme_dividerHorizontal = 62;
-
- // aapt resource value: 63
- public const int AppCompatTheme_dividerVertical = 63;
-
- // aapt resource value: 65
- public const int AppCompatTheme_dropdownListPreferredItemHeight = 65;
-
- // aapt resource value: 64
- public const int AppCompatTheme_dropDownListViewStyle = 64;
-
- // aapt resource value: 66
- public const int AppCompatTheme_editTextBackground = 66;
-
- // aapt resource value: 67
- public const int AppCompatTheme_editTextColor = 67;
-
- // aapt resource value: 68
- public const int AppCompatTheme_editTextStyle = 68;
-
- // aapt resource value: 69
- public const int AppCompatTheme_homeAsUpIndicator = 69;
-
- // aapt resource value: 70
- public const int AppCompatTheme_imageButtonStyle = 70;
-
- // aapt resource value: 71
- public const int AppCompatTheme_listChoiceBackgroundIndicator = 71;
-
- // aapt resource value: 72
- public const int AppCompatTheme_listDividerAlertDialog = 72;
-
- // aapt resource value: 73
- public const int AppCompatTheme_listMenuViewStyle = 73;
-
- // aapt resource value: 74
- public const int AppCompatTheme_listPopupWindowStyle = 74;
-
- // aapt resource value: 75
- public const int AppCompatTheme_listPreferredItemHeight = 75;
-
- // aapt resource value: 76
- public const int AppCompatTheme_listPreferredItemHeightLarge = 76;
-
- // aapt resource value: 77
- public const int AppCompatTheme_listPreferredItemHeightSmall = 77;
-
- // aapt resource value: 78
- public const int AppCompatTheme_listPreferredItemPaddingLeft = 78;
-
- // aapt resource value: 79
- public const int AppCompatTheme_listPreferredItemPaddingRight = 79;
-
- // aapt resource value: 80
- public const int AppCompatTheme_panelBackground = 80;
-
- // aapt resource value: 81
- public const int AppCompatTheme_panelMenuListTheme = 81;
-
- // aapt resource value: 82
- public const int AppCompatTheme_panelMenuListWidth = 82;
-
- // aapt resource value: 83
- public const int AppCompatTheme_popupMenuStyle = 83;
-
- // aapt resource value: 84
- public const int AppCompatTheme_popupWindowStyle = 84;
-
- // aapt resource value: 85
- public const int AppCompatTheme_radioButtonStyle = 85;
-
- // aapt resource value: 86
- public const int AppCompatTheme_ratingBarStyle = 86;
-
- // aapt resource value: 87
- public const int AppCompatTheme_ratingBarStyleIndicator = 87;
-
- // aapt resource value: 88
- public const int AppCompatTheme_ratingBarStyleSmall = 88;
-
- // aapt resource value: 89
- public const int AppCompatTheme_searchViewStyle = 89;
-
- // aapt resource value: 90
- public const int AppCompatTheme_seekBarStyle = 90;
-
- // aapt resource value: 91
- public const int AppCompatTheme_selectableItemBackground = 91;
-
- // aapt resource value: 92
- public const int AppCompatTheme_selectableItemBackgroundBorderless = 92;
-
- // aapt resource value: 93
- public const int AppCompatTheme_spinnerDropDownItemStyle = 93;
-
- // aapt resource value: 94
- public const int AppCompatTheme_spinnerStyle = 94;
-
- // aapt resource value: 95
- public const int AppCompatTheme_switchStyle = 95;
-
- // aapt resource value: 96
- public const int AppCompatTheme_textAppearanceLargePopupMenu = 96;
-
- // aapt resource value: 97
- public const int AppCompatTheme_textAppearanceListItem = 97;
-
- // aapt resource value: 98
- public const int AppCompatTheme_textAppearanceListItemSecondary = 98;
-
- // aapt resource value: 99
- public const int AppCompatTheme_textAppearanceListItemSmall = 99;
-
- // aapt resource value: 100
- public const int AppCompatTheme_textAppearancePopupMenuHeader = 100;
-
- // aapt resource value: 101
- public const int AppCompatTheme_textAppearanceSearchResultSubtitle = 101;
-
- // aapt resource value: 102
- public const int AppCompatTheme_textAppearanceSearchResultTitle = 102;
-
- // aapt resource value: 103
- public const int AppCompatTheme_textAppearanceSmallPopupMenu = 103;
-
- // aapt resource value: 104
- public const int AppCompatTheme_textColorAlertDialogListItem = 104;
-
- // aapt resource value: 105
- public const int AppCompatTheme_textColorSearchUrl = 105;
-
- // aapt resource value: 106
- public const int AppCompatTheme_toolbarNavigationButtonStyle = 106;
-
- // aapt resource value: 107
- public const int AppCompatTheme_toolbarStyle = 107;
-
- // aapt resource value: 108
- public const int AppCompatTheme_tooltipForegroundColor = 108;
-
- // aapt resource value: 109
- public const int AppCompatTheme_tooltipFrameBackground = 109;
-
- // aapt resource value: 110
- public const int AppCompatTheme_viewInflaterClass = 110;
-
- // aapt resource value: 111
- public const int AppCompatTheme_windowActionBar = 111;
-
- // aapt resource value: 112
- public const int AppCompatTheme_windowActionBarOverlay = 112;
-
- // aapt resource value: 113
- public const int AppCompatTheme_windowActionModeOverlay = 113;
-
- // aapt resource value: 114
- public const int AppCompatTheme_windowFixedHeightMajor = 114;
-
- // aapt resource value: 115
- public const int AppCompatTheme_windowFixedHeightMinor = 115;
-
- // aapt resource value: 116
- public const int AppCompatTheme_windowFixedWidthMajor = 116;
-
- // aapt resource value: 117
- public const int AppCompatTheme_windowFixedWidthMinor = 117;
-
- // aapt resource value: 118
- public const int AppCompatTheme_windowMinWidthMajor = 118;
-
- // aapt resource value: 119
- public const int AppCompatTheme_windowMinWidthMinor = 119;
-
- // aapt resource value: 120
- public const int AppCompatTheme_windowNoTitle = 120;
-
- // aapt resource value: { 0x7F020026 }
- public static int[] ButtonBarLayout = new int[] {
- 2130837542};
-
- // aapt resource value: 0
- public const int ButtonBarLayout_allowStacking = 0;
-
- // aapt resource value: { 0x10101A5,0x101031F,0x7F020027 }
- public static int[] ColorStateListItem = new int[] {
- 16843173,
- 16843551,
- 2130837543};
-
- // aapt resource value: 2
- public const int ColorStateListItem_alpha = 2;
-
- // aapt resource value: 1
- public const int ColorStateListItem_android_alpha = 1;
-
- // aapt resource value: 0
- public const int ColorStateListItem_android_color = 0;
-
- // aapt resource value: { 0x1010107,0x7F020042,0x7F020043 }
- public static int[] CompoundButton = new int[] {
- 16843015,
- 2130837570,
- 2130837571};
-
- // aapt resource value: 0
- public const int CompoundButton_android_button = 0;
-
- // aapt resource value: 1
- public const int CompoundButton_buttonTint = 1;
-
- // aapt resource value: 2
- public const int CompoundButton_buttonTintMode = 2;
-
- // aapt resource value: { 0x7F02008D,0x7F0200D0 }
- public static int[] CoordinatorLayout = new int[] {
- 2130837645,
- 2130837712};
-
- // aapt resource value: 0
- public const int CoordinatorLayout_keylines = 0;
-
- // aapt resource value: { 0x10100B3,0x7F020090,0x7F020091,0x7F020092,0x7F020093,0x7F020094,0x7F020095 }
- public static int[] CoordinatorLayout_Layout = new int[] {
- 16842931,
- 2130837648,
- 2130837649,
- 2130837650,
- 2130837651,
- 2130837652,
- 2130837653};
-
- // aapt resource value: 0
- public const int CoordinatorLayout_Layout_android_layout_gravity = 0;
-
- // aapt resource value: 1
- public const int CoordinatorLayout_Layout_layout_anchor = 1;
-
- // aapt resource value: 2
- public const int CoordinatorLayout_Layout_layout_anchorGravity = 2;
-
- // aapt resource value: 3
- public const int CoordinatorLayout_Layout_layout_behavior = 3;
-
- // aapt resource value: 4
- public const int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4;
-
- // aapt resource value: 5
- public const int CoordinatorLayout_Layout_layout_insetEdge = 5;
-
- // aapt resource value: 6
- public const int CoordinatorLayout_Layout_layout_keyline = 6;
-
- // aapt resource value: 1
- public const int CoordinatorLayout_statusBarBackground = 1;
-
- // aapt resource value: { 0x7F020029,0x7F02002A,0x7F020036,0x7F02004A,0x7F020069,0x7F02007E,0x7F0200CA,0x7F0200E8 }
- public static int[] DrawerArrowToggle = new int[] {
- 2130837545,
- 2130837546,
- 2130837558,
- 2130837578,
- 2130837609,
- 2130837630,
- 2130837706,
- 2130837736};
-
- // aapt resource value: 0
- public const int DrawerArrowToggle_arrowHeadLength = 0;
-
- // aapt resource value: 1
- public const int DrawerArrowToggle_arrowShaftLength = 1;
-
- // aapt resource value: 2
- public const int DrawerArrowToggle_barLength = 2;
-
- // aapt resource value: 3
- public const int DrawerArrowToggle_color = 3;
-
- // aapt resource value: 4
- public const int DrawerArrowToggle_drawableSize = 4;
-
- // aapt resource value: 5
- public const int DrawerArrowToggle_gapBetweenBars = 5;
-
- // aapt resource value: 6
- public const int DrawerArrowToggle_spinBars = 6;
-
- // aapt resource value: 7
- public const int DrawerArrowToggle_thickness = 7;
-
- // aapt resource value: { 0x7F020075,0x7F020076,0x7F020077,0x7F020078,0x7F020079,0x7F02007A }
- public static int[] FontFamily = new int[] {
- 2130837621,
- 2130837622,
- 2130837623,
- 2130837624,
- 2130837625,
- 2130837626};
-
- // aapt resource value: { 0x1010532,0x1010533,0x101053F,0x101056F,0x1010570,0x7F020073,0x7F02007B,0x7F02007C,0x7F02007D,0x7F020103 }
- public static int[] FontFamilyFont = new int[] {
- 16844082,
- 16844083,
- 16844095,
- 16844143,
- 16844144,
- 2130837619,
- 2130837627,
- 2130837628,
- 2130837629,
- 2130837763};
-
- // aapt resource value: 0
- public const int FontFamilyFont_android_font = 0;
-
- // aapt resource value: 2
- public const int FontFamilyFont_android_fontStyle = 2;
-
- // aapt resource value: 4
- public const int FontFamilyFont_android_fontVariationSettings = 4;
-
- // aapt resource value: 1
- public const int FontFamilyFont_android_fontWeight = 1;
-
- // aapt resource value: 3
- public const int FontFamilyFont_android_ttcIndex = 3;
-
- // aapt resource value: 5
- public const int FontFamilyFont_font = 5;
-
- // aapt resource value: 6
- public const int FontFamilyFont_fontStyle = 6;
-
- // aapt resource value: 7
- public const int FontFamilyFont_fontVariationSettings = 7;
-
- // aapt resource value: 8
- public const int FontFamilyFont_fontWeight = 8;
-
- // aapt resource value: 9
- public const int FontFamilyFont_ttcIndex = 9;
-
- // aapt resource value: 0
- public const int FontFamily_fontProviderAuthority = 0;
-
- // aapt resource value: 1
- public const int FontFamily_fontProviderCerts = 1;
-
- // aapt resource value: 2
- public const int FontFamily_fontProviderFetchStrategy = 2;
-
- // aapt resource value: 3
- public const int FontFamily_fontProviderFetchTimeout = 3;
-
- // aapt resource value: 4
- public const int FontFamily_fontProviderPackage = 4;
-
- // aapt resource value: 5
- public const int FontFamily_fontProviderQuery = 5;
-
- // aapt resource value: { 0x101019D,0x101019E,0x10101A1,0x10101A2,0x10101A3,0x10101A4,0x1010201,0x101020B,0x1010510,0x1010511,0x1010512,0x1010513 }
- public static int[] GradientColor = new int[] {
- 16843165,
- 16843166,
- 16843169,
- 16843170,
- 16843171,
- 16843172,
- 16843265,
- 16843275,
- 16844048,
- 16844049,
- 16844050,
- 16844051};
-
- // aapt resource value: { 0x10101A5,0x1010514 }
- public static int[] GradientColorItem = new int[] {
- 16843173,
- 16844052};
-
- // aapt resource value: 0
- public const int GradientColorItem_android_color = 0;
-
- // aapt resource value: 1
- public const int GradientColorItem_android_offset = 1;
-
- // aapt resource value: 7
- public const int GradientColor_android_centerColor = 7;
-
- // aapt resource value: 3
- public const int GradientColor_android_centerX = 3;
-
- // aapt resource value: 4
- public const int GradientColor_android_centerY = 4;
-
- // aapt resource value: 1
- public const int GradientColor_android_endColor = 1;
-
- // aapt resource value: 10
- public const int GradientColor_android_endX = 10;
-
- // aapt resource value: 11
- public const int GradientColor_android_endY = 11;
-
- // aapt resource value: 5
- public const int GradientColor_android_gradientRadius = 5;
-
- // aapt resource value: 0
- public const int GradientColor_android_startColor = 0;
-
- // aapt resource value: 8
- public const int GradientColor_android_startX = 8;
-
- // aapt resource value: 9
- public const int GradientColor_android_startY = 9;
-
- // aapt resource value: 6
- public const int GradientColor_android_tileMode = 6;
-
- // aapt resource value: 2
- public const int GradientColor_android_type = 2;
-
- // aapt resource value: { 0x10100AF,0x10100C4,0x1010126,0x1010127,0x1010128,0x7F020065,0x7F020067,0x7F0200A5,0x7F0200C6 }
- public static int[] LinearLayoutCompat = new int[] {
- 16842927,
- 16842948,
- 16843046,
- 16843047,
- 16843048,
- 2130837605,
- 2130837607,
- 2130837669,
- 2130837702};
-
- // aapt resource value: 2
- public const int LinearLayoutCompat_android_baselineAligned = 2;
-
- // aapt resource value: 3
- public const int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
-
- // aapt resource value: 0
- public const int LinearLayoutCompat_android_gravity = 0;
-
- // aapt resource value: 1
- public const int LinearLayoutCompat_android_orientation = 1;
-
- // aapt resource value: 4
- public const int LinearLayoutCompat_android_weightSum = 4;
-
- // aapt resource value: 5
- public const int LinearLayoutCompat_divider = 5;
-
- // aapt resource value: 6
- public const int LinearLayoutCompat_dividerPadding = 6;
-
- // aapt resource value: { 0x10100B3,0x10100F4,0x10100F5,0x1010181 }
- public static int[] LinearLayoutCompat_Layout = new int[] {
- 16842931,
- 16842996,
- 16842997,
- 16843137};
-
- // aapt resource value: 0
- public const int LinearLayoutCompat_Layout_android_layout_gravity = 0;
-
- // aapt resource value: 2
- public const int LinearLayoutCompat_Layout_android_layout_height = 2;
-
- // aapt resource value: 3
- public const int LinearLayoutCompat_Layout_android_layout_weight = 3;
-
- // aapt resource value: 1
- public const int LinearLayoutCompat_Layout_android_layout_width = 1;
-
- // aapt resource value: 7
- public const int LinearLayoutCompat_measureWithLargestChild = 7;
-
- // aapt resource value: 8
- public const int LinearLayoutCompat_showDividers = 8;
-
- // aapt resource value: { 0x10102AC,0x10102AD }
- public static int[] ListPopupWindow = new int[] {
- 16843436,
- 16843437};
-
- // aapt resource value: 0
- public const int ListPopupWindow_android_dropDownHorizontalOffset = 0;
-
- // aapt resource value: 1
- public const int ListPopupWindow_android_dropDownVerticalOffset = 1;
-
- // aapt resource value: { 0x101000E,0x10100D0,0x1010194,0x10101DE,0x10101DF,0x10101E0 }
- public static int[] MenuGroup = new int[] {
- 16842766,
- 16842960,
- 16843156,
- 16843230,
- 16843231,
- 16843232};
-
- // aapt resource value: 5
- public const int MenuGroup_android_checkableBehavior = 5;
-
- // aapt resource value: 0
- public const int MenuGroup_android_enabled = 0;
-
- // aapt resource value: 1
- public const int MenuGroup_android_id = 1;
-
- // aapt resource value: 3
- public const int MenuGroup_android_menuCategory = 3;
-
- // aapt resource value: 4
- public const int MenuGroup_android_orderInCategory = 4;
-
- // aapt resource value: 2
- public const int MenuGroup_android_visible = 2;
-
- // aapt resource value: { 0x1010002,0x101000E,0x10100D0,0x1010106,0x1010194,0x10101DE,0x10101DF,0x10101E1,0x10101E2,0x10101E3,0x10101E4,0x10101E5,0x101026F,0x7F02000D,0x7F02001F,0x7F020020,0x7F020028,0x7F020056,0x7F020085,0x7F020086,0x7F0200AA,0x7F0200C5,0x7F0200FF }
- public static int[] MenuItem = new int[] {
- 16842754,
- 16842766,
- 16842960,
- 16843014,
- 16843156,
- 16843230,
- 16843231,
- 16843233,
- 16843234,
- 16843235,
- 16843236,
- 16843237,
- 16843375,
- 2130837517,
- 2130837535,
- 2130837536,
- 2130837544,
- 2130837590,
- 2130837637,
- 2130837638,
- 2130837674,
- 2130837701,
- 2130837759};
-
- // aapt resource value: 13
- public const int MenuItem_actionLayout = 13;
-
- // aapt resource value: 14
- public const int MenuItem_actionProviderClass = 14;
-
- // aapt resource value: 15
- public const int MenuItem_actionViewClass = 15;
-
- // aapt resource value: 16
- public const int MenuItem_alphabeticModifiers = 16;
-
- // aapt resource value: 9
- public const int MenuItem_android_alphabeticShortcut = 9;
-
- // aapt resource value: 11
- public const int MenuItem_android_checkable = 11;
-
- // aapt resource value: 3
- public const int MenuItem_android_checked = 3;
-
- // aapt resource value: 1
- public const int MenuItem_android_enabled = 1;
-
- // aapt resource value: 0
- public const int MenuItem_android_icon = 0;
-
- // aapt resource value: 2
- public const int MenuItem_android_id = 2;
-
- // aapt resource value: 5
- public const int MenuItem_android_menuCategory = 5;
-
- // aapt resource value: 10
- public const int MenuItem_android_numericShortcut = 10;
-
- // aapt resource value: 12
- public const int MenuItem_android_onClick = 12;
-
- // aapt resource value: 6
- public const int MenuItem_android_orderInCategory = 6;
-
- // aapt resource value: 7
- public const int MenuItem_android_title = 7;
-
- // aapt resource value: 8
- public const int MenuItem_android_titleCondensed = 8;
-
- // aapt resource value: 4
- public const int MenuItem_android_visible = 4;
-
- // aapt resource value: 17
- public const int MenuItem_contentDescription = 17;
-
- // aapt resource value: 18
- public const int MenuItem_iconTint = 18;
-
- // aapt resource value: 19
- public const int MenuItem_iconTintMode = 19;
-
- // aapt resource value: 20
- public const int MenuItem_numericModifiers = 20;
-
- // aapt resource value: 21
- public const int MenuItem_showAsAction = 21;
-
- // aapt resource value: 22
- public const int MenuItem_tooltipText = 22;
-
- // aapt resource value: { 0x10100AE,0x101012C,0x101012D,0x101012E,0x101012F,0x1010130,0x1010131,0x7F0200B6,0x7F0200D1 }
- public static int[] MenuView = new int[] {
- 16842926,
- 16843052,
- 16843053,
- 16843054,
- 16843055,
- 16843056,
- 16843057,
- 2130837686,
- 2130837713};
-
- // aapt resource value: 4
- public const int MenuView_android_headerBackground = 4;
-
- // aapt resource value: 2
- public const int MenuView_android_horizontalDivider = 2;
-
- // aapt resource value: 5
- public const int MenuView_android_itemBackground = 5;
-
- // aapt resource value: 6
- public const int MenuView_android_itemIconDisabledAlpha = 6;
-
- // aapt resource value: 1
- public const int MenuView_android_itemTextAppearance = 1;
-
- // aapt resource value: 3
- public const int MenuView_android_verticalDivider = 3;
-
- // aapt resource value: 0
- public const int MenuView_android_windowAnimationStyle = 0;
-
- // aapt resource value: 7
- public const int MenuView_preserveIconSpacing = 7;
-
- // aapt resource value: 8
- public const int MenuView_subMenuArrow = 8;
-
- // aapt resource value: { 0x1010176,0x10102C9,0x7F0200AB }
- public static int[] PopupWindow = new int[] {
- 16843126,
- 16843465,
- 2130837675};
-
- // aapt resource value: { 0x7F0200CF }
- public static int[] PopupWindowBackgroundState = new int[] {
- 2130837711};
-
- // aapt resource value: 0
- public const int PopupWindowBackgroundState_state_above_anchor = 0;
-
- // aapt resource value: 1
- public const int PopupWindow_android_popupAnimationStyle = 1;
-
- // aapt resource value: 0
- public const int PopupWindow_android_popupBackground = 0;
-
- // aapt resource value: 2
- public const int PopupWindow_overlapAnchor = 2;
-
- // aapt resource value: { 0x7F0200AC,0x7F0200AF }
- public static int[] RecycleListView = new int[] {
- 2130837676,
- 2130837679};
-
- // aapt resource value: 0
- public const int RecycleListView_paddingBottomNoButtons = 0;
-
- // aapt resource value: 1
- public const int RecycleListView_paddingTopNoTitle = 1;
-
- // aapt resource value: { 0x10100DA,0x101011F,0x1010220,0x1010264,0x7F020046,0x7F020055,0x7F020060,0x7F02007F,0x7F020087,0x7F02008F,0x7F0200B9,0x7F0200BA,0x7F0200BF,0x7F0200C0,0x7F0200D2,0x7F0200D7,0x7F020105 }
- public static int[] SearchView = new int[] {
- 16842970,
- 16843039,
- 16843296,
- 16843364,
- 2130837574,
- 2130837589,
- 2130837600,
- 2130837631,
- 2130837639,
- 2130837647,
- 2130837689,
- 2130837690,
- 2130837695,
- 2130837696,
- 2130837714,
- 2130837719,
- 2130837765};
-
- // aapt resource value: 0
- public const int SearchView_android_focusable = 0;
-
- // aapt resource value: 3
- public const int SearchView_android_imeOptions = 3;
-
- // aapt resource value: 2
- public const int SearchView_android_inputType = 2;
-
- // aapt resource value: 1
- public const int SearchView_android_maxWidth = 1;
-
- // aapt resource value: 4
- public const int SearchView_closeIcon = 4;
-
- // aapt resource value: 5
- public const int SearchView_commitIcon = 5;
-
- // aapt resource value: 6
- public const int SearchView_defaultQueryHint = 6;
-
- // aapt resource value: 7
- public const int SearchView_goIcon = 7;
-
- // aapt resource value: 8
- public const int SearchView_iconifiedByDefault = 8;
-
- // aapt resource value: 9
- public const int SearchView_layout = 9;
-
- // aapt resource value: 10
- public const int SearchView_queryBackground = 10;
-
- // aapt resource value: 11
- public const int SearchView_queryHint = 11;
-
- // aapt resource value: 12
- public const int SearchView_searchHintIcon = 12;
-
- // aapt resource value: 13
- public const int SearchView_searchIcon = 13;
-
- // aapt resource value: 14
- public const int SearchView_submitBackground = 14;
-
- // aapt resource value: 15
- public const int SearchView_suggestionRowLayout = 15;
-
- // aapt resource value: 16
- public const int SearchView_voiceIcon = 16;
-
- // aapt resource value: { 0x10100B2,0x1010176,0x101017B,0x1010262,0x7F0200B4 }
- public static int[] Spinner = new int[] {
- 16842930,
- 16843126,
- 16843131,
- 16843362,
- 2130837684};
-
- // aapt resource value: 3
- public const int Spinner_android_dropDownWidth = 3;
-
- // aapt resource value: 0
- public const int Spinner_android_entries = 0;
-
- // aapt resource value: 1
- public const int Spinner_android_popupBackground = 1;
-
- // aapt resource value: 2
- public const int Spinner_android_prompt = 2;
-
- // aapt resource value: 4
- public const int Spinner_popupTheme = 4;
-
- // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D }
- public static int[] StateListDrawable = new int[] {
- 16843036,
- 16843156,
- 16843157,
- 16843158,
- 16843532,
- 16843533};
-
- // aapt resource value: { 0x1010199 }
- public static int[] StateListDrawableItem = new int[] {
- 16843161};
-
- // aapt resource value: 0
- public const int StateListDrawableItem_android_drawable = 0;
-
- // aapt resource value: 3
- public const int StateListDrawable_android_constantSize = 3;
-
- // aapt resource value: 0
- public const int StateListDrawable_android_dither = 0;
-
- // aapt resource value: 4
- public const int StateListDrawable_android_enterFadeDuration = 4;
-
- // aapt resource value: 5
- public const int StateListDrawable_android_exitFadeDuration = 5;
-
- // aapt resource value: 2
- public const int StateListDrawable_android_variablePadding = 2;
-
- // aapt resource value: 1
- public const int StateListDrawable_android_visible = 1;
-
- // aapt resource value: { 0x1010124,0x1010125,0x1010142,0x7F0200C7,0x7F0200CD,0x7F0200D8,0x7F0200D9,0x7F0200DB,0x7F0200E9,0x7F0200EA,0x7F0200EB,0x7F020100,0x7F020101,0x7F020102 }
- public static int[] SwitchCompat = new int[] {
- 16843044,
- 16843045,
- 16843074,
- 2130837703,
- 2130837709,
- 2130837720,
- 2130837721,
- 2130837723,
- 2130837737,
- 2130837738,
- 2130837739,
- 2130837760,
- 2130837761,
- 2130837762};
-
- // aapt resource value: 1
- public const int SwitchCompat_android_textOff = 1;
-
- // aapt resource value: 0
- public const int SwitchCompat_android_textOn = 0;
-
- // aapt resource value: 2
- public const int SwitchCompat_android_thumb = 2;
-
- // aapt resource value: 3
- public const int SwitchCompat_showText = 3;
-
- // aapt resource value: 4
- public const int SwitchCompat_splitTrack = 4;
-
- // aapt resource value: 5
- public const int SwitchCompat_switchMinWidth = 5;
-
- // aapt resource value: 6
- public const int SwitchCompat_switchPadding = 6;
-
- // aapt resource value: 7
- public const int SwitchCompat_switchTextAppearance = 7;
-
- // aapt resource value: 8
- public const int SwitchCompat_thumbTextPadding = 8;
-
- // aapt resource value: 9
- public const int SwitchCompat_thumbTint = 9;
-
- // aapt resource value: 10
- public const int SwitchCompat_thumbTintMode = 10;
-
- // aapt resource value: 11
- public const int SwitchCompat_track = 11;
-
- // aapt resource value: 12
- public const int SwitchCompat_trackTint = 12;
-
- // aapt resource value: 13
- public const int SwitchCompat_trackTintMode = 13;
-
- // aapt resource value: { 0x1010095,0x1010096,0x1010097,0x1010098,0x101009A,0x101009B,0x1010161,0x1010162,0x1010163,0x1010164,0x10103AC,0x7F020074,0x7F0200DC }
- public static int[] TextAppearance = new int[] {
- 16842901,
- 16842902,
- 16842903,
- 16842904,
- 16842906,
- 16842907,
- 16843105,
- 16843106,
- 16843107,
- 16843108,
- 16843692,
- 2130837620,
- 2130837724};
-
- // aapt resource value: 10
- public const int TextAppearance_android_fontFamily = 10;
-
- // aapt resource value: 6
- public const int TextAppearance_android_shadowColor = 6;
-
- // aapt resource value: 7
- public const int TextAppearance_android_shadowDx = 7;
-
- // aapt resource value: 8
- public const int TextAppearance_android_shadowDy = 8;
-
- // aapt resource value: 9
- public const int TextAppearance_android_shadowRadius = 9;
-
- // aapt resource value: 3
- public const int TextAppearance_android_textColor = 3;
-
- // aapt resource value: 4
- public const int TextAppearance_android_textColorHint = 4;
-
- // aapt resource value: 5
- public const int TextAppearance_android_textColorLink = 5;
-
- // aapt resource value: 0
- public const int TextAppearance_android_textSize = 0;
-
- // aapt resource value: 2
- public const int TextAppearance_android_textStyle = 2;
-
- // aapt resource value: 1
- public const int TextAppearance_android_typeface = 1;
-
- // aapt resource value: 11
- public const int TextAppearance_fontFamily = 11;
-
- // aapt resource value: 12
- public const int TextAppearance_textAllCaps = 12;
-
- // aapt resource value: { 0x10100AF,0x1010140,0x7F02003D,0x7F020048,0x7F020049,0x7F020057,0x7F020058,0x7F020059,0x7F02005A,0x7F02005B,0x7F02005C,0x7F0200A2,0x7F0200A3,0x7F0200A4,0x7F0200A7,0x7F0200A8,0x7F0200B4,0x7F0200D3,0x7F0200D4,0x7F0200D5,0x7F0200F1,0x7F0200F2,0x7F0200F3,0x7F0200F4,0x7F0200F5,0x7F0200F6,0x7F0200F7,0x7F0200F8,0x7F0200F9 }
- public static int[] Toolbar = new int[] {
- 16842927,
- 16843072,
- 2130837565,
- 2130837576,
- 2130837577,
- 2130837591,
- 2130837592,
- 2130837593,
- 2130837594,
- 2130837595,
- 2130837596,
- 2130837666,
- 2130837667,
- 2130837668,
- 2130837671,
- 2130837672,
- 2130837684,
- 2130837715,
- 2130837716,
- 2130837717,
- 2130837745,
- 2130837746,
- 2130837747,
- 2130837748,
- 2130837749,
- 2130837750,
- 2130837751,
- 2130837752,
- 2130837753};
-
- // aapt resource value: 0
- public const int Toolbar_android_gravity = 0;
-
- // aapt resource value: 1
- public const int Toolbar_android_minHeight = 1;
-
- // aapt resource value: 2
- public const int Toolbar_buttonGravity = 2;
-
- // aapt resource value: 3
- public const int Toolbar_collapseContentDescription = 3;
-
- // aapt resource value: 4
- public const int Toolbar_collapseIcon = 4;
-
- // aapt resource value: 5
- public const int Toolbar_contentInsetEnd = 5;
-
- // aapt resource value: 6
- public const int Toolbar_contentInsetEndWithActions = 6;
-
- // aapt resource value: 7
- public const int Toolbar_contentInsetLeft = 7;
-
- // aapt resource value: 8
- public const int Toolbar_contentInsetRight = 8;
-
- // aapt resource value: 9
- public const int Toolbar_contentInsetStart = 9;
-
- // aapt resource value: 10
- public const int Toolbar_contentInsetStartWithNavigation = 10;
-
- // aapt resource value: 11
- public const int Toolbar_logo = 11;
-
- // aapt resource value: 12
- public const int Toolbar_logoDescription = 12;
-
- // aapt resource value: 13
- public const int Toolbar_maxButtonHeight = 13;
-
- // aapt resource value: 14
- public const int Toolbar_navigationContentDescription = 14;
-
- // aapt resource value: 15
- public const int Toolbar_navigationIcon = 15;
-
- // aapt resource value: 16
- public const int Toolbar_popupTheme = 16;
-
- // aapt resource value: 17
- public const int Toolbar_subtitle = 17;
-
- // aapt resource value: 18
- public const int Toolbar_subtitleTextAppearance = 18;
-
- // aapt resource value: 19
- public const int Toolbar_subtitleTextColor = 19;
-
- // aapt resource value: 20
- public const int Toolbar_title = 20;
-
- // aapt resource value: 21
- public const int Toolbar_titleMargin = 21;
-
- // aapt resource value: 22
- public const int Toolbar_titleMarginBottom = 22;
-
- // aapt resource value: 23
- public const int Toolbar_titleMarginEnd = 23;
-
- // aapt resource value: 26
- public const int Toolbar_titleMargins = 26;
-
- // aapt resource value: 24
- public const int Toolbar_titleMarginStart = 24;
-
- // aapt resource value: 25
- public const int Toolbar_titleMarginTop = 25;
-
- // aapt resource value: 27
- public const int Toolbar_titleTextAppearance = 27;
-
- // aapt resource value: 28
- public const int Toolbar_titleTextColor = 28;
-
- // aapt resource value: { 0x1010000,0x10100DA,0x7F0200AD,0x7F0200AE,0x7F0200E7 }
- public static int[] View = new int[] {
- 16842752,
- 16842970,
- 2130837677,
- 2130837678,
- 2130837735};
-
- // aapt resource value: { 0x10100D4,0x7F020034,0x7F020035 }
- public static int[] ViewBackgroundHelper = new int[] {
- 16842964,
- 2130837556,
- 2130837557};
-
- // aapt resource value: 0
- public const int ViewBackgroundHelper_android_background = 0;
-
- // aapt resource value: 1
- public const int ViewBackgroundHelper_backgroundTint = 1;
-
- // aapt resource value: 2
- public const int ViewBackgroundHelper_backgroundTintMode = 2;
-
- // aapt resource value: { 0x10100D0,0x10100F2,0x10100F3 }
- public static int[] ViewStubCompat = new int[] {
- 16842960,
- 16842994,
- 16842995};
-
- // aapt resource value: 0
- public const int ViewStubCompat_android_id = 0;
-
- // aapt resource value: 2
- public const int ViewStubCompat_android_inflatedId = 2;
-
- // aapt resource value: 1
- public const int ViewStubCompat_android_layout = 1;
-
- // aapt resource value: 1
- public const int View_android_focusable = 1;
-
- // aapt resource value: 0
- public const int View_android_theme = 0;
-
- // aapt resource value: 2
- public const int View_paddingEnd = 2;
-
- // aapt resource value: 3
- public const int View_paddingStart = 3;
-
- // aapt resource value: 4
- public const int View_theme = 4;
-
- static Styleable()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Styleable()
- {
- }
- }
- }
-}
-#pragma warning restore 1591
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-hdpi/Icon.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-hdpi/Icon.png
deleted file mode 100644
index df45338eb..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-hdpi/Icon.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:43b920c6ffda41228829fe935affc6412bf1631a5d5d697fdf177d9cb1d30378
-size 2201
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-mdpi/Icon.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-mdpi/Icon.png
deleted file mode 100644
index c2701f764..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-mdpi/Icon.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:cc588b29d17625c317da71db500cf423a5b803ab2c36414e0911183c9a58be58
-size 1410
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-xhdpi/Icon.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-xhdpi/Icon.png
deleted file mode 100644
index 1428a71e8..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-xhdpi/Icon.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:dce05a36290a2df3718604cc1c3656bcd42c493549e7f41e46450e77f23f348c
-size 3237
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-xxhdpi/Icon.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-xxhdpi/Icon.png
deleted file mode 100644
index 2a7994bb8..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-xxhdpi/Icon.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:cbf854ef8e7f651a7dd4a26908c6d548e3016f7698c28b3f8c4bef2c9a5214dd
-size 5414
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-xxxhdpi/Icon.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-xxxhdpi/Icon.png
deleted file mode 100644
index f7c2d3fd6..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/Resources/mipmap-xxxhdpi/Icon.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:4a5924be7d266989aac3a652a6cb19ac5db07b3a6a12d9f5c9554309093cbbc9
-size 7825
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/TestsSample.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/TestsSample.cs
deleted file mode 100644
index 861400d22..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/TestsSample.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using NUnit.Framework;
-
-namespace xamarin_android
-{
- [TestFixture]
- public class TestsSample
- {
-
- [SetUp]
- public void Setup() { }
-
-
- [TearDown]
- public void Tear() { }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/xamarin-android.csproj b/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/xamarin-android.csproj
deleted file mode 100644
index c93d98bb9..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/xamarin-android/xamarin-android.csproj
+++ /dev/null
@@ -1,147 +0,0 @@
-
-
-
- Debug
- AnyCPU
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}
- {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Library
- xamarin_android
- xamarin-android
- v13.0
- True
- Resources\Resource.designer.cs
- Resource
- Resources
- Assets
- false
- Properties\AndroidManifest.xml
-
-
- true
- full
- false
- bin\Debug
- DEBUG;XAMARIN_ANDROID
- prompt
- 4
- None
-
-
- true
- d8
- true
- false
- false
- false
- false
-
-
-
- true
- pdbonly
- true
- bin\Release
- XAMARIN_ANDROID
- prompt
- 4
- true
-
-
- false
- false
- false
- false
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- TestArgon2Parameters.cs
-
-
- TestClasses.cs
-
-
- TestData.cs
-
-
- TestManaged.cs
-
-
- TestNative.cs
-
-
- TestUtils.cs
-
-
- Conformity.cs
-
-
- TestLegacy.cs
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {2FE99B5D-EA97-4701-B004-F2F59E6EEB64}
- devolutions-crypto
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/Entitlements.plist b/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/Entitlements.plist
deleted file mode 100644
index 9ae599370..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/Entitlements.plist
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/Info.plist b/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/Info.plist
deleted file mode 100644
index e11674eaa..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/Info.plist
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
- CFBundleName
- xamarin-ios
- CFBundleIdentifier
- com.companyname.xamarin-ios
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1.0
- LSRequiresIPhoneOS
-
- MinimumOSVersion
- 13.2
- UIDeviceFamily
-
- 1
- 2
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UILaunchStoryboardName
- LaunchScreen
- NSAppTransportSecurity
-
- NSAllowsArbitraryLoads
-
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/LaunchScreen.storyboard b/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/LaunchScreen.storyboard
deleted file mode 100644
index 5d2e905aa..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/LaunchScreen.storyboard
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/Main.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/Main.cs
deleted file mode 100644
index 5c630a646..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/Main.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Linq;
-using System.Collections.Generic;
-
-using Foundation;
-using UIKit;
-
-namespace xamarin_ios
-{
- public class Application
- {
- // This is the main entry point of the application.
- static void Main(string[] args)
- {
- // if you want to use a different Application Delegate class from "UnitTestAppDelegate"
- // you can specify it here.
- UIApplication.Main(args, null, "UnitTestAppDelegate");
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/UnitTestAppDelegate.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/UnitTestAppDelegate.cs
deleted file mode 100644
index f4bee0131..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/UnitTestAppDelegate.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-using System;
-using System.Linq;
-using System.Collections.Generic;
-
-using Foundation;
-using UIKit;
-using MonoTouch.NUnit.UI;
-
-namespace xamarin_ios
-{
- // The UIApplicationDelegate for the application. This class is responsible for launching the
- // User Interface of the application, as well as listening (and optionally responding) to
- // application events from iOS.
- [Register("UnitTestAppDelegate")]
- public partial class UnitTestAppDelegate : UIApplicationDelegate
- {
- // class-level declarations
- UIWindow window;
- TouchRunner runner;
-
- //
- // This method is invoked when the application has loaded and is ready to run. In this
- // method you should instantiate the window, load the UI into it and then make the window
- // visible.
- //
- // You have 17 seconds to return from this method, or iOS will terminate your application.
- //
- public override bool FinishedLaunching(UIApplication app, NSDictionary options)
- {
- // create a new window instance based on the screen size
- window = new UIWindow(UIScreen.MainScreen.Bounds);
- runner = new TouchRunner(window);
-
- // register every tests included in the main application/assembly
- runner.Add(System.Reflection.Assembly.GetExecutingAssembly());
-
- window.RootViewController = new UINavigationController(runner.GetViewController());
-
- // make the window visible
- window.MakeKeyAndVisible();
-
- return true;
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/ApiDefinition.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/ApiDefinition.cs
deleted file mode 100644
index cbde0707d..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/ApiDefinition.cs
+++ /dev/null
@@ -1,66 +0,0 @@
-using System;
-
-using ObjCRuntime;
-using Foundation;
-using UIKit;
-
-namespace NativeLibrary
-{
- // The first step to creating a binding is to add your native library ("libNativeLibrary.a")
- // to the project by right-clicking (or Control-clicking) the folder containing this source
- // file and clicking "Add files..." and then simply select the native library (or libraries)
- // that you want to bind.
- //
- // When you do that, you'll notice that MonoDevelop generates a code-behind file for each
- // native library which will contain a [LinkWith] attribute. VisualStudio auto-detects the
- // architectures that the native library supports and fills in that information for you,
- // however, it cannot auto-detect any Frameworks or other system libraries that the
- // native library may depend on, so you'll need to fill in that information yourself.
- //
- // Once you've done that, you're ready to move on to binding the API...
- //
- //
- // Here is where you'd define your API definition for the native Objective-C library.
- //
- // For example, to bind the following Objective-C class:
- //
- // @interface Widget : NSObject {
- // }
- //
- // The C# binding would look like this:
- //
- // [BaseType (typeof (NSObject))]
- // interface Widget {
- // }
- //
- // To bind Objective-C properties, such as:
- //
- // @property (nonatomic, readwrite, assign) CGPoint center;
- //
- // You would add a property definition in the C# interface like so:
- //
- // [Export ("center")]
- // CGPoint Center { get; set; }
- //
- // To bind an Objective-C method, such as:
- //
- // -(void) doSomething:(NSObject *)object atIndex:(NSInteger)index;
- //
- // You would add a method definition to the C# interface like so:
- //
- // [Export ("doSomething:atIndex:")]
- // void DoSomething (NSObject object, int index);
- //
- // Objective-C "constructors" such as:
- //
- // -(id)initWithElmo:(ElmoMuppet *)elmo;
- //
- // Can be bound as:
- //
- // [Export ("initWithElmo:")]
- // IntPtr Constructor (ElmoMuppet elmo);
- //
- // For more information, see https://aka.ms/ios-binding
- //
-}
-
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/Properties/AssemblyInfo.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/Properties/AssemblyInfo.cs
deleted file mode 100644
index cb6dc2edc..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-
-using Foundation;
-
-// This attribute allows you to mark your assemblies as “safe to link”.
-// When the attribute is present, the linker—if enabled—will process the assembly
-// even if you’re using the “Link SDK assemblies only” option, which is the default for device builds.
-
-[assembly: LinkerSafe]
-
-// Information about this assembly is defined by the following attributes.
-// Change them to the values specific to your project.
-
-[assembly: AssemblyTitle("NativeLibrary")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("NativeLibrary")]
-[assembly: AssemblyCopyright("Copyright © 2017")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
-// The form "{Major}.{Minor}.*" will automatically update the build and revision,
-// and "{Major}.{Minor}.{Build}.*" will update just the revision.
-
-[assembly: AssemblyVersion("1.0.*")]
-
-// The following attributes are used to specify the signing key for the assembly,
-// if desired. See the Mono documentation for more information about signing.
-
-//[assembly: AssemblyDelaySign(false)]
-//[assembly: AssemblyKeyFile("")]
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/Structs.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/Structs.cs
deleted file mode 100644
index 02f071bce..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/Structs.cs
+++ /dev/null
@@ -1,6 +0,0 @@
-using System;
-
-namespace NativeLibrary
-{
-}
-
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/devolutions-crypto.csproj b/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/devolutions-crypto.csproj
deleted file mode 100644
index b136279e6..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/devolutions-crypto/devolutions-crypto.csproj
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
- Debug
- AnyCPU
- {8FFB629D-F513-41CE-95D2-7ECE97B6EEEC};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- {17D15824-FC39-4514-A212-A04F44FFBE1F}
- {b6f3ff35-79b2-4f25-a2fc-60a7cf61013b}
- Library
- NativeLibrary
- Resources
- NativeLibrary
- PackageReference
-
-
- true
- full
- false
- bin\Debug
- __UNIFIED__;__MOBILE__;__IOS__;DEBUG;IOS
- prompt
- 4
- true
-
-
- true
- bin\Release
- __UNIFIED__;__MOBILE__;__IOS__;IOS
- prompt
- 4
- true
-
-
-
-
-
-
-
-
-
-
-
- Argon2Parameters.cs
-
-
- DevolutionsCryptoException.cs
-
-
- Enums.Argon2.cs
-
-
- Enums.cs
-
-
- KeyPair.cs
-
-
- Managed.cs
-
-
- Native.cs
-
-
- Native.Xamarin.cs
-
-
- NativeError.cs
-
-
- Utils.cs
-
-
- ILegacyDecryptor.cs
-
-
- ILegacyHasher.cs
-
-
-
-
-
-
-
-
-
-
- Framework
- False
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/xamarin-ios.csproj b/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/xamarin-ios.csproj
deleted file mode 100644
index d6b639184..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/xamarin-ios.csproj
+++ /dev/null
@@ -1,125 +0,0 @@
-
-
-
- Debug
- iPhoneSimulator
- {7AD24B51-66E5-48E9-927D-916062D65FB6}
- {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Exe
- xamarin_ios
- xamarin-ios
- Resources
-
-
- true
- full
- false
- bin\iPhoneSimulator\Debug
- __IOS__;__MOBILE__;__UNIFIED__;DEBUG;XAMARIN_IOS
- prompt
- 4
- iPhone Developer
- true
- true
- true
- 51229
- None
- x86_64
- NSUrlSessionHandler
-
-
- pdbonly
- true
- bin\iPhone\Release
- prompt
- 4
- iPhone Developer
- true
- true
- Entitlements.plist
- SdkOnly
- ARM64
- NSUrlSessionHandler
-
-
- true
- bin\iPhoneSimulator\Release
- __IOS__;__MOBILE__;__UNIFIED__;XAMARIN_IOS
- prompt
- 4
- iPhone Developer
- true
- None
- x86_64
- NSUrlSessionHandler
-
-
- true
- full
- false
- bin\iPhone\Debug
- DEBUG;
- prompt
- 4
- iPhone Developer
- true
- true
- true
- true
- true
- Entitlements.plist
- 59622
- SdkOnly
- ARM64
- NSUrlSessionHandler
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- TestArgon2Parameters.cs
-
-
- TestClasses.cs
-
-
- TestData.cs
-
-
- TestManaged.cs
-
-
- TestNative.cs
-
-
- TestUtils.cs
-
-
- Conformity.cs
-
-
- TestLegacy.cs
-
-
-
-
- {17D15824-FC39-4514-A212-A04F44FFBE1F}
- devolutions-crypto
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/xamarin-ios.sln b/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/xamarin-ios.sln
deleted file mode 100644
index 340097880..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-ios/xamarin-ios.sln
+++ /dev/null
@@ -1,33 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xamarin-ios", "xamarin-ios.csproj", "{7AD24B51-66E5-48E9-927D-916062D65FB6}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "devolutions-crypto", "devolutions-crypto\devolutions-crypto.csproj", "{17D15824-FC39-4514-A212-A04F44FFBE1F}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|iPhoneSimulator = Debug|iPhoneSimulator
- Release|iPhone = Release|iPhone
- Release|iPhoneSimulator = Release|iPhoneSimulator
- Debug|iPhone = Debug|iPhone
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {7AD24B51-66E5-48E9-927D-916062D65FB6}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
- {7AD24B51-66E5-48E9-927D-916062D65FB6}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
- {7AD24B51-66E5-48E9-927D-916062D65FB6}.Release|iPhone.ActiveCfg = Release|iPhone
- {7AD24B51-66E5-48E9-927D-916062D65FB6}.Release|iPhone.Build.0 = Release|iPhone
- {7AD24B51-66E5-48E9-927D-916062D65FB6}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
- {7AD24B51-66E5-48E9-927D-916062D65FB6}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
- {7AD24B51-66E5-48E9-927D-916062D65FB6}.Debug|iPhone.ActiveCfg = Debug|iPhone
- {7AD24B51-66E5-48E9-927D-916062D65FB6}.Debug|iPhone.Build.0 = Debug|iPhone
- {17D15824-FC39-4514-A212-A04F44FFBE1F}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
- {17D15824-FC39-4514-A212-A04F44FFBE1F}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
- {17D15824-FC39-4514-A212-A04F44FFBE1F}.Release|iPhone.ActiveCfg = Release|Any CPU
- {17D15824-FC39-4514-A212-A04F44FFBE1F}.Release|iPhone.Build.0 = Release|Any CPU
- {17D15824-FC39-4514-A212-A04F44FFBE1F}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
- {17D15824-FC39-4514-A212-A04F44FFBE1F}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
- {17D15824-FC39-4514-A212-A04F44FFBE1F}.Debug|iPhone.ActiveCfg = Debug|Any CPU
- {17D15824-FC39-4514-A212-A04F44FFBE1F}.Debug|iPhone.Build.0 = Debug|Any CPU
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-full/devolutions-crypto/devolutions-crypto.csproj b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-full/devolutions-crypto/devolutions-crypto.csproj
deleted file mode 100644
index f2008d740..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-full/devolutions-crypto/devolutions-crypto.csproj
+++ /dev/null
@@ -1,94 +0,0 @@
-
-
-
- Debug
- AnyCPU
- {0EB1CC3D-532F-4E5E-831D-14B072263774}
- {A3F8F2AB-B479-4A4A-A458-A89E7DC349F1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Library
- devolutionscrypto
- devolutions-crypto
- v4.8
- Resources
- true
-
-
- true
- full
- false
- bin\Debug
- DEBUG;
- prompt
- 4
- false
- false
- false
- false
- false
- HttpClientHandler
- None
-
- None
-
-
- true
- bin\Release
-
- prompt
- 4
- false
- false
- false
- false
- false
- HttpClientHandler
- None
-
- None
-
-
-
- NativeError.cs
-
-
- Native.Xamarin.cs
-
-
- Native.cs
-
-
- KeyPair.cs
-
-
- Managed.cs
-
-
- DevolutionsCryptoException.cs
-
-
- Enums.cs
-
-
- Enums.Argon2.cs
-
-
- Argon2Parameters.cs
-
-
- Utils.cs
-
-
- ILegacyDecryptor.cs
-
-
- ILegacyHasher.cs
-
-
-
-
- libDevolutionsCrypto-x64.dylib
- PreserveNewest
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-full/xamarin-mac-full.csproj b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-full/xamarin-mac-full.csproj
deleted file mode 100644
index 7cf2ae8ad..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-full/xamarin-mac-full.csproj
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
- Debug
- AnyCPU
- {B405A8B5-7014-433C-B4EC-2FDD836C0442}
- {A3F8F2AB-B479-4A4A-A458-A89E7DC349F1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Library
- xamarin_mac_full
- xamarin-mac-full
- v4.5
- Resources
- true
-
-
- true
- full
- false
- bin\Debug
- __MACOS__;DEBUG;XAMARIN_MAC_FULL;
- prompt
- 4
- false
- false
- false
- false
- false
- None
-
-
- true
- bin\Release
- __MACOS__;XAMARIN_MAC_FULL;
- prompt
- 4
- false
- false
- false
- false
- false
- None
-
-
-
-
- 3.11.1
-
-
-
-
- Conformity.cs
-
-
- TestArgon2Parameters.cs
-
-
- TestClasses.cs
-
-
- TestData.cs
-
-
- TestManaged.cs
-
-
- TestNative.cs
-
-
- TestUtils.cs
-
-
- TestLegacy.cs
-
-
-
-
- {0EB1CC3D-532F-4E5E-831D-14B072263774}
- devolutions-crypto
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-full/xamarin-mac-full.sln b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-full/xamarin-mac-full.sln
deleted file mode 100644
index 62e64b869..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-full/xamarin-mac-full.sln
+++ /dev/null
@@ -1,23 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xamarin-mac-full", "xamarin-mac-full.csproj", "{B405A8B5-7014-433C-B4EC-2FDD836C0442}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "devolutions-crypto", "devolutions-crypto\devolutions-crypto.csproj", "{0EB1CC3D-532F-4E5E-831D-14B072263774}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {B405A8B5-7014-433C-B4EC-2FDD836C0442}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {B405A8B5-7014-433C-B4EC-2FDD836C0442}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {B405A8B5-7014-433C-B4EC-2FDD836C0442}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {B405A8B5-7014-433C-B4EC-2FDD836C0442}.Release|Any CPU.Build.0 = Release|Any CPU
- {0EB1CC3D-532F-4E5E-831D-14B072263774}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {0EB1CC3D-532F-4E5E-831D-14B072263774}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {0EB1CC3D-532F-4E5E-831D-14B072263774}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {0EB1CC3D-532F-4E5E-831D-14B072263774}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/AppDelegate.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/AppDelegate.cs
deleted file mode 100644
index d371529b9..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/AppDelegate.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System.IO;
-using System.Reflection;
-using AppKit;
-using Foundation;
-using GuiUnit;
-
-namespace xamarin_mac_modern
-{
- [Register("AppDelegate")]
- public class AppDelegate : NSApplicationDelegate
- {
- public AppDelegate()
- {
- }
-
- public override void DidFinishLaunching(NSNotification notification)
- {
- // Insert code here to initialize your application
- }
-
- public override void WillTerminate(NSNotification notification)
- {
- // Insert code here to tear down your application
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png
deleted file mode 100644
index ddfadb90c..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:5fee79574e6469b27db4e87249ac43135bb149c1c3b8f9e86ab750e664fcec00
-size 8125
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png
deleted file mode 100644
index e870b0f98..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:23b427eef2cb9dfdf4375e69b59c28fc37a3428c8470ea5c9df0a56c5ce5cfd4
-size 20798
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png
deleted file mode 100644
index be00c33f9..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:c8753cf3682275fc10bdb859cc58f351cc164084106103332bd9a1698d0a312e
-size 711
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png
deleted file mode 100644
index 8a257dc1e..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:68f092cf03280792dff8f57fc44d05e01867cf202b5e1ca358f5db467965a59e
-size 1484
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png
deleted file mode 100644
index e870b0f98..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:23b427eef2cb9dfdf4375e69b59c28fc37a3428c8470ea5c9df0a56c5ce5cfd4
-size 20798
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png
deleted file mode 100644
index 7cf723f24..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9a4aded91ae57a8fffb968ece0c166f99d1224f26de5e29759c6254c6e6fb550
-size 59335
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png
deleted file mode 100644
index 8a257dc1e..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:68f092cf03280792dff8f57fc44d05e01867cf202b5e1ca358f5db467965a59e
-size 1484
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png
deleted file mode 100644
index 08732f646..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:141313b0304705885f6cdc4d303366f316ee830524751cddb743bf2853be5c87
-size 3428
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png
deleted file mode 100644
index 7cf723f24..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9a4aded91ae57a8fffb968ece0c166f99d1224f26de5e29759c6254c6e6fb550
-size 59335
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png
deleted file mode 100644
index a377f68b6..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9b87eb9ca78f2df0969dc5ee6e265825f84f9f582072822fb97b3755b37ad42a
-size 177632
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/Contents.json b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/Contents.json
deleted file mode 100644
index 6b2854529..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/Contents.json
+++ /dev/null
@@ -1,68 +0,0 @@
-{
- "images": [
- {
- "filename": "AppIcon-16.png",
- "size": "16x16",
- "scale": "1x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-16@2x.png",
- "size": "16x16",
- "scale": "2x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-32.png",
- "size": "32x32",
- "scale": "1x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-32@2x.png",
- "size": "32x32",
- "scale": "2x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-128.png",
- "size": "128x128",
- "scale": "1x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-128@2x.png",
- "size": "128x128",
- "scale": "2x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-256.png",
- "size": "256x256",
- "scale": "1x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-256@2x.png",
- "size": "256x256",
- "scale": "2x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-512.png",
- "size": "512x512",
- "scale": "1x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-512@2x.png",
- "size": "512x512",
- "scale": "2x",
- "idiom": "mac"
- }
- ],
- "info": {
- "version": 1,
- "author": "xcode"
- }
-}
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/Contents.json b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/Contents.json
deleted file mode 100644
index 4caf392f9..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Assets.xcassets/Contents.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Info.plist b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Info.plist
deleted file mode 100644
index bebdd95bb..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Info.plist
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
- CFBundleName
- xamarin-mac-modern
- CFBundleIdentifier
- com.companyname.xamarin-mac-modern
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1
- LSMinimumSystemVersion
- 10.15
- CFBundleDevelopmentRegion
- en
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- APPL
- CFBundleSignature
- ????
- NSHumanReadableCopyright
-
- NSPrincipalClass
- NSApplication
- NSMainStoryboardFile
- Main
- XSAppIconAssets
- Assets.xcassets/AppIcon.appiconset
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Main.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Main.cs
deleted file mode 100644
index bdf79771a..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Main.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System.IO;
-using System.Reflection;
-using AppKit;
-
-namespace xamarin_mac_modern
-{
- static class MainClass
- {
- static void Main(string[] args)
- {
- string resultFile = Path.Combine(Assembly.GetExecutingAssembly().Location.Split("bin/Debug")[0], "TestResult.xml");
-
- string[] testArgs = new string[] { Assembly.GetExecutingAssembly().Location, "-noheader", "-xml:" + resultFile};
- GuiUnit.TestRunner.Main(testArgs);
-
- //NSApplication.Init();
- //NSApplication.Main(args);
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Main.storyboard b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Main.storyboard
deleted file mode 100644
index 377d477f1..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Main.storyboard
+++ /dev/null
@@ -1,717 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/ViewController.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/ViewController.cs
deleted file mode 100644
index 5157f2963..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/ViewController.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System;
-
-using AppKit;
-using Foundation;
-
-namespace xamarin_mac_modern
-{
- public partial class ViewController : NSViewController
- {
- public ViewController(IntPtr handle) : base(handle)
- {
- }
-
- public override void ViewDidLoad()
- {
- base.ViewDidLoad();
-
- // Do any additional setup after loading the view.
- }
-
- public override NSObject RepresentedObject
- {
- get
- {
- return base.RepresentedObject;
- }
- set
- {
- base.RepresentedObject = value;
- // Update the view, if already loaded.
- }
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/ViewController.designer.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/ViewController.designer.cs
deleted file mode 100644
index 3342cbcae..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/ViewController.designer.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-// WARNING
-//
-// This file has been generated automatically by Xamarin Studio to store outlets and
-// actions made in the UI designer. If it is removed, they will be lost.
-// Manual changes to this file may not be handled correctly.
-//
-using Foundation;
-
-namespace xamarin_mac_modern
-{
- [Register("ViewController")]
- partial class ViewController
- {
- void ReleaseDesignerOutlets()
- {
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/devolutions-crypto/ApiDefinition.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/devolutions-crypto/ApiDefinition.cs
deleted file mode 100644
index ee7c87062..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/devolutions-crypto/ApiDefinition.cs
+++ /dev/null
@@ -1,66 +0,0 @@
-using System;
-
-using AppKit;
-using Foundation;
-using ObjCRuntime;
-using CoreGraphics;
-
-namespace devolutionscrypto
-{
- // The first step to creating a binding is to add your native library ("libNativeLibrary.a")
- // to the project by right-clicking (or Control-clicking) the folder containing this source
- // file and clicking "Add files..." and then simply select the native library (or libraries)
- // that you want to bind.
- //
- // When you do that, you'll notice that MonoDevelop generates a code-behind file for each
- // native library which will contain a [LinkWith] attribute. MonoDevelop auto-detects the
- // architectures that the native library supports and fills in that information for you,
- // however, it cannot auto-detect any Frameworks or other system libraries that the
- // native library may depend on, so you'll need to fill in that information yourself.
- //
- // Once you've done that, you're ready to move on to binding the API...
- //
- //
- // Here is where you'd define your API definition for the native Objective-C library.
- //
- // For example, to bind the following Objective-C class:
- //
- // @interface Widget : NSObject {
- // }
- //
- // The C# binding would look like this:
- //
- // [BaseType (typeof (NSObject))]
- // interface Widget {
- // }
- //
- // To bind Objective-C properties, such as:
- //
- // @property (nonatomic, readwrite, assign) CGPoint center;
- //
- // You would add a property definition in the C# interface like so:
- //
- // [Export ("center")]
- // CGPoint Center { get; set; }
- //
- // To bind an Objective-C method, such as:
- //
- // -(void) doSomething:(NSObject *)object atIndex:(NSInteger)index;
- //
- // You would add a method definition to the C# interface like so:
- //
- // [Export ("doSomething:atIndex:")]
- // void DoSomething (NSObject object, int index);
- //
- // Objective-C "constructors" such as:
- //
- // -(id)initWithElmo:(ElmoMuppet *)elmo;
- //
- // Can be bound as:
- //
- // [Export ("initWithElmo:")]
- // IntPtr Constructor (ElmoMuppet elmo);
- //
- // For more information, see http://developer.xamarin.com/guides/ios/advanced_topics/binding_objective-c/
- //
-}
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/devolutions-crypto/StructsAndEnums.cs b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/devolutions-crypto/StructsAndEnums.cs
deleted file mode 100644
index 3d96d40ae..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/devolutions-crypto/StructsAndEnums.cs
+++ /dev/null
@@ -1,5 +0,0 @@
-using System;
-
-namespace devolutionscrypto
-{
-}
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/devolutions-crypto/devolutions-crypto.csproj b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/devolutions-crypto/devolutions-crypto.csproj
deleted file mode 100644
index 08eac60e4..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/devolutions-crypto/devolutions-crypto.csproj
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
- Debug
- AnyCPU
- {39A3B745-AD50-417D-BF7A-B56E9742DBDF}
- {810C163F-4746-4721-8B8E-88A3673A62EA};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Library
- devolutionscrypto
- devolutions-crypto
- Resources
-
-
- true
- full
- false
- bin\Debug
- DEBUG;MAC_MODERN
- prompt
- 4
- false
-
-
- true
- bin\Release
- MAC_MODERN
- prompt
- 4
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Dynamic
- False
-
-
-
-
- Argon2Parameters.cs
-
-
- Enums.Argon2.cs
-
-
- Enums.cs
-
-
- DevolutionsCryptoException.cs
-
-
- Managed.cs
-
-
- KeyPair.cs
-
-
- Native.cs
-
-
- Native.Xamarin.cs
-
-
- NativeError.cs
-
-
- Utils.cs
-
-
- ILegacyDecryptor.cs
-
-
- ILegacyHasher.cs
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/xamarin-mac-modern.csproj b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/xamarin-mac-modern.csproj
deleted file mode 100644
index 8aef573c2..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/xamarin-mac-modern.csproj
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
- Debug
- AnyCPU
- {CB569AF6-B231-47ED-96C3-7E9ECAC127CB}
- {A3F8F2AB-B479-4A4A-A458-A89E7DC349F1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Exe
- xamarin_mac_modern
- xamarin-mac-modern
- v2.0
- Xamarin.Mac
- Resources
-
-
- true
- full
- false
- bin\Debug
- __UNIFIED__;__MACOS__;DEBUG;XAMARIN_MAC_MODERN
- prompt
- 4
- false
- Mac Developer
- false
- false
- false
- true
- true
- 3rd Party Mac Developer Installer
- None
-
-
- true
- bin\Release
- __UNIFIED__;__MACOS__;XAMARIN_MAC_MODERN
- prompt
- 4
- false
- true
- false
- true
- true
- true
- SdkOnly
- None
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ViewController.cs
-
-
- TestArgon2Parameters.cs
-
-
- TestClasses.cs
-
-
- TestData.cs
-
-
- TestManaged.cs
-
-
- TestNative.cs
-
-
- TestUtils.cs
-
-
- Conformity.cs
-
-
- TestLegacy.cs
-
-
-
-
-
-
-
- {EACFD119-769E-4E6C-89B7-A6CE3757C431}
- GuiUnit_xammac_mobile
-
-
- {39A3B745-AD50-417D-BF7A-B56E9742DBDF}
- devolutions-crypto
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/xamarin-mac-modern.sln b/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/xamarin-mac-modern.sln
deleted file mode 100644
index 55e14903e..000000000
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/xamarin-mac-modern.sln
+++ /dev/null
@@ -1,29 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xamarin-mac-modern", "xamarin-mac-modern.csproj", "{CB569AF6-B231-47ED-96C3-7E9ECAC127CB}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GuiUnit_xammac_mobile", "guiunit\src\framework\GuiUnit_xammac_mobile.csproj", "{EACFD119-769E-4E6C-89B7-A6CE3757C431}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "devolutions-crypto", "devolutions-crypto\devolutions-crypto.csproj", "{39A3B745-AD50-417D-BF7A-B56E9742DBDF}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {CB569AF6-B231-47ED-96C3-7E9ECAC127CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {CB569AF6-B231-47ED-96C3-7E9ECAC127CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {CB569AF6-B231-47ED-96C3-7E9ECAC127CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {CB569AF6-B231-47ED-96C3-7E9ECAC127CB}.Release|Any CPU.Build.0 = Release|Any CPU
- {EACFD119-769E-4E6C-89B7-A6CE3757C431}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {EACFD119-769E-4E6C-89B7-A6CE3757C431}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {EACFD119-769E-4E6C-89B7-A6CE3757C431}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {EACFD119-769E-4E6C-89B7-A6CE3757C431}.Release|Any CPU.Build.0 = Release|Any CPU
- {39A3B745-AD50-417D-BF7A-B56E9742DBDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {39A3B745-AD50-417D-BF7A-B56E9742DBDF}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {39A3B745-AD50-417D-BF7A-B56E9742DBDF}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {39A3B745-AD50-417D-BF7A-B56E9742DBDF}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/AndroidManifest.xml b/wrappers/csharp/tests/unit-tests/nugets/android/AndroidManifest.xml
new file mode 100644
index 000000000..3fead98ca
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/MainActivity.cs b/wrappers/csharp/tests/unit-tests/nugets/android/MainActivity.cs
new file mode 100644
index 000000000..616fab9e7
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/MainActivity.cs
@@ -0,0 +1,76 @@
+namespace android;
+
+using System;
+using System.Linq;
+using System.Reflection;
+using Debugger = System.Diagnostics.Debug;
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using System.Threading;
+
+[Activity(Label = "@string/app_name", MainLauncher = true)]
+public class MainActivity : Activity
+{
+ protected override void OnCreate(Bundle? savedInstanceState)
+ {
+ base.OnCreate(savedInstanceState);
+
+ // Set our view from the "main" layout resource
+ SetContentView(Resource.Layout.activity_main);
+
+ Debugger.WriteLine($"====LAUNCHING ANDROID TESTS====");
+
+ int passedTests = 0;
+ int failedTests = 0;
+
+ // Get the current assembly
+ Assembly currentAssembly = Assembly.GetExecutingAssembly();
+
+ // Find all classes with the [TestClass] attribute
+ var testClasses = currentAssembly.GetTypes()
+ .Where(t => t.GetCustomAttributes(typeof(TestClassAttribute), false).Any());
+
+ foreach (var testClass in testClasses)
+ {
+ Debugger.WriteLine($"Running tests in {testClass.Name}...");
+
+ // Create an instance of the test class
+ var testClassInstance = Activator.CreateInstance(testClass);
+
+ // Find all methods with the [TestMethod] attribute
+ var testMethods = testClass.GetMethods()
+ .Where(m => m.GetCustomAttributes(typeof(TestMethodAttribute), false).Any());
+
+ foreach (var testMethod in testMethods)
+ {
+ try
+ {
+ Debugger.WriteLine($"Running {testMethod.Name}...");
+ testMethod.Invoke(testClassInstance, null);
+ Debugger.WriteLine($"{testMethod.Name} passed.");
+ passedTests++;
+ }
+ catch (TargetInvocationException ex) when (ex.InnerException is AssertFailedException)
+ {
+ Debugger.WriteLine($"{testMethod.Name} failed: {ex.InnerException.Message}");
+ failedTests++;
+ }
+ catch (Exception ex)
+ {
+ Debugger.WriteLine($"{testMethod.Name} encountered an unexpected error: {ex.Message}");
+ failedTests++;
+ }
+ }
+ }
+
+ // Summary
+ Debugger.WriteLine("\nTest Summary:");
+ Debugger.WriteLine($"Passed: {passedTests}");
+ Debugger.WriteLine($"Failed: {failedTests}");
+ Debugger.WriteLine($"====ENDOFTESTS====");
+
+ Thread.Sleep(10000);
+
+ // Exit with non-zero code if any tests failed
+ this.FinishAffinity();
+ }
+}
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Resources/AboutResources.txt b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/AboutResources.txt
similarity index 75%
rename from wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Resources/AboutResources.txt
rename to wrappers/csharp/tests/unit-tests/nugets/android/Resources/AboutResources.txt
index 096447a90..219f42544 100644
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-android/devolutions-crypto/Resources/AboutResources.txt
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/AboutResources.txt
@@ -20,25 +20,25 @@ Resources/
In order to get the build system to recognize Android resources, set the build action to
"AndroidResource". The native Android APIs do not operate directly with filenames, but
instead operate on resource IDs. When you compile an Android application that uses resources,
-the build system will package the resources for distribution and generate a class called "R"
+the build system will package the resources for distribution and generate a class called "Resource"
(this is an Android convention) that contains the tokens for each one of the resources
-included. For example, for the above Resources layout, this is what the R class would expose:
+included. For example, for the above Resources layout, this is what the Resource class would expose:
-public class R {
- public class drawable {
+public class Resource {
+ public class Drawable {
public const int icon = 0x123;
}
- public class layout {
+ public class Layout {
public const int main = 0x456;
}
- public class strings {
+ public class Strings {
public const int first_string = 0xabc;
public const int second_string = 0xbcd;
}
}
-You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main
-to reference the layout/main.xml file, or R.strings.first_string to reference the first
-string in the dictionary file values/strings.xml.
\ No newline at end of file
+You would then use Resource.Drawable.icon to reference the drawable/icon.png file, or
+Resource.Layout.main to reference the layout/main.xml file, or Resource.Strings.first_string
+to reference the first string in the dictionary file values/strings.xml.
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/layout/activity_main.xml b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/layout/activity_main.xml
new file mode 100644
index 000000000..f94985291
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/layout/activity_main.xml
@@ -0,0 +1,13 @@
+
+
+
+
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-anydpi-v26/appicon.xml b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-anydpi-v26/appicon.xml
new file mode 100644
index 000000000..7751f6951
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-anydpi-v26/appicon.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-anydpi-v26/appicon_round.xml b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-anydpi-v26/appicon_round.xml
new file mode 100644
index 000000000..7751f6951
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-anydpi-v26/appicon_round.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-hdpi/appicon.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-hdpi/appicon.png
new file mode 100644
index 000000000..ced26b314
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-hdpi/appicon.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3556a7abca4dd1156bf744a24c5df621493636d5887160a349e51a2c1d917878
+size 2178
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-hdpi/appicon_background.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-hdpi/appicon_background.png
new file mode 100644
index 000000000..08fb50347
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-hdpi/appicon_background.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8340f43a27af971bfde1648ad4555b2b3e4479f7b01b35e241499f8cfe645127
+size 97
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-hdpi/appicon_foreground.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-hdpi/appicon_foreground.png
new file mode 100644
index 000000000..06ffdf662
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-hdpi/appicon_foreground.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:62d5b6fbea6c951f2401f16e714dd461cf7911cc9bb357cea287395f507c08ff
+size 1276
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-mdpi/appicon.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-mdpi/appicon.png
new file mode 100644
index 000000000..51431be90
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-mdpi/appicon.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:042da82c79964ba6e064ea0c208c53778f1c0f8cde3e0a7013aa294a4ab28d14
+size 1524
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-mdpi/appicon_background.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-mdpi/appicon_background.png
new file mode 100644
index 000000000..0f0e05b4e
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-mdpi/appicon_background.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:050e8185b18df0fab07766c3612b12f717a4d803fa62c76253c9bd150ba879df
+size 92
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-mdpi/appicon_foreground.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-mdpi/appicon_foreground.png
new file mode 100644
index 000000000..4beaeb371
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-mdpi/appicon_foreground.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3462a2b125779e4bc26e9d2a1a185feea4941e285d1152ba30c70fcfe88f0d13
+size 1273
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xhdpi/appicon.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xhdpi/appicon.png
new file mode 100644
index 000000000..c0b4d227a
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xhdpi/appicon.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ad4ed0dee24b682e7e6aa0c267736495a650302276ee455b98af39b9d35e5e51
+size 3098
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xhdpi/appicon_background.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xhdpi/appicon_background.png
new file mode 100644
index 000000000..8eed83ca2
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xhdpi/appicon_background.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e7b391571b86870b0af048142604fdaa63f14f1eb0a9ff3199f0eef0cce2723d
+size 100
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xhdpi/appicon_foreground.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xhdpi/appicon_foreground.png
new file mode 100644
index 000000000..b1767bd53
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xhdpi/appicon_foreground.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:738a35654e366397ed64273c743c5456b08e2d7361d9e31b81dc01c0fd6abc4a
+size 1805
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxhdpi/appicon.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxhdpi/appicon.png
new file mode 100644
index 000000000..9d4833834
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxhdpi/appicon.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:94cc355448e32ed617962612e74a551267546d437987ff3f327bf5aebd6466ac
+size 4674
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxhdpi/appicon_background.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxhdpi/appicon_background.png
new file mode 100644
index 000000000..605599f48
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxhdpi/appicon_background.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:860f92fafd967d27ba8476a31515be03c50293d67c505aebf5e00754a3c9bb1c
+size 108
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxhdpi/appicon_foreground.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxhdpi/appicon_foreground.png
new file mode 100644
index 000000000..f84de039f
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxhdpi/appicon_foreground.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54d28bc048a3dc9a6d7956b605da284b930ee7769ecf251e4cf82c41c4b86fb2
+size 1926
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxxhdpi/appicon.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxxhdpi/appicon.png
new file mode 100644
index 000000000..b8276b87c
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxxhdpi/appicon.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b28709f684f88eb15b391d673cceed72e86ae9818614053b9564bf9c1dd00c8e
+size 6832
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxxhdpi/appicon_background.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxxhdpi/appicon_background.png
new file mode 100644
index 000000000..b026897f4
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxxhdpi/appicon_background.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b620c718648083b41117a7018ff7e7c551f401534f75b0a43a80c07f397b514e
+size 117
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxxhdpi/appicon_foreground.png b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxxhdpi/appicon_foreground.png
new file mode 100644
index 000000000..22496bcaa
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/mipmap-xxxhdpi/appicon_foreground.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:971944922d91bb70bce0d461648de5ec80476a7f80791fd92a707cd1baf8992c
+size 2801
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/values/ic_launcher_background.xml b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/values/ic_launcher_background.xml
new file mode 100644
index 000000000..6ec24e641
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/values/ic_launcher_background.xml
@@ -0,0 +1,4 @@
+
+
+ #2C3E50
+
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/Resources/values/strings.xml b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/values/strings.xml
new file mode 100644
index 000000000..e4ba583a7
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/Resources/values/strings.xml
@@ -0,0 +1,4 @@
+
+ android
+ Hello, Android!
+
diff --git a/wrappers/csharp/tests/unit-tests/nugets/android/android.csproj b/wrappers/csharp/tests/unit-tests/nugets/android/android.csproj
new file mode 100644
index 000000000..1c8f4473a
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/android/android.csproj
@@ -0,0 +1,33 @@
+
+
+ net8.0-android
+ 21
+ Exe
+ enable
+ enable
+ com.companyname.android
+ 1
+ 1.0
+
+ full
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/dotnet-core/dotnet-core.csproj b/wrappers/csharp/tests/unit-tests/nugets/dotnet-core/dotnet-core.csproj
index 6c3750c12..8e4ac284d 100644
--- a/wrappers/csharp/tests/unit-tests/nugets/dotnet-core/dotnet-core.csproj
+++ b/wrappers/csharp/tests/unit-tests/nugets/dotnet-core/dotnet-core.csproj
@@ -1,7 +1,7 @@
- net6.0
+ net8.0
dotnet_core
false
diff --git a/wrappers/csharp/tests/unit-tests/nugets/dotnet-core/dotnet-core.sln b/wrappers/csharp/tests/unit-tests/nugets/dotnet-core/dotnet-core.sln
deleted file mode 100644
index 6bf7f03da..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/dotnet-core/dotnet-core.sln
+++ /dev/null
@@ -1,25 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.29728.190
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dotnet-core", "dotnet-core.csproj", "{9C51BBB7-94BA-49F5-A3E0-8E4713BAF72B}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {9C51BBB7-94BA-49F5-A3E0-8E4713BAF72B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {9C51BBB7-94BA-49F5-A3E0-8E4713BAF72B}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {9C51BBB7-94BA-49F5-A3E0-8E4713BAF72B}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {9C51BBB7-94BA-49F5-A3E0-8E4713BAF72B}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {681F6AD0-19F6-4EB2-B3EB-E38B5FB8A241}
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/Properties/AssemblyInfo.cs b/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/Properties/AssemblyInfo.cs
deleted file mode 100644
index 7de820673..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-[assembly: AssemblyTitle("dotnet-framework")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("dotnet-framework")]
-[assembly: AssemblyCopyright("Copyright © 2019")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-[assembly: ComVisible(false)]
-
-[assembly: Guid("e2bedc75-f1e7-4ef3-a1e6-cfd2d6592069")]
-
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/dotnet-framework.csproj b/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/dotnet-framework.csproj
deleted file mode 100644
index 49b8a20ee..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/dotnet-framework.csproj
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
- Debug
- AnyCPU
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}
- Library
- Properties
- dotnet_framework
- dotnet-framework
- v4.7.2
- win;win-x86;win-x64
- win;win-x86;win-x64
- 512
- {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 15.0
- $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
- $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages
- False
- UnitTest
-
-
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE;DOTNET_FRAMEWORK
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE;DOTNET_FRAMEWORK
- prompt
- 4
-
-
- true
- bin\x64\Debug\
- DEBUG;TRACE;DOTNET_FRAMEWORK
- full
- x64
- 7.3
- prompt
- MinimumRecommendedRules.ruleset
-
-
- bin\x64\Release\
- TRACE;DOTNET_FRAMEWORK
- true
- pdbonly
- x64
- 7.3
- prompt
- MinimumRecommendedRules.ruleset
-
-
- true
- bin\x86\Debug\
- DEBUG;TRACE;DOTNET_FRAMEWORK
- full
- x86
- 7.3
- prompt
- MinimumRecommendedRules.ruleset
-
-
- bin\x86\Release\
- TRACE;DOTNET_FRAMEWORK
- true
- pdbonly
- x86
- 7.3
- prompt
- MinimumRecommendedRules.ruleset
-
-
-
-
-
-
-
-
-
-
-
-
- Conformity.cs
-
-
- TestArgon2Parameters.cs
-
-
- TestClasses.cs
-
-
- TestData.cs
-
-
- TestManaged.cs
-
-
- TestNative.cs
-
-
- TestUtils.cs
-
-
- TestLegacy.cs
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/dotnet-framework.runsettings b/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/dotnet-framework.runsettings
deleted file mode 100644
index f443e3bc6..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/dotnet-framework.runsettings
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
- 1
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/dotnet-framework.sln b/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/dotnet-framework.sln
deleted file mode 100644
index 380a49396..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/dotnet-framework/dotnet-framework.sln
+++ /dev/null
@@ -1,41 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.29519.181
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dotnet-framework", "dotnet-framework.csproj", "{E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{7882D43A-FB3A-4FC6-A112-86386108C1A2}"
- ProjectSection(SolutionItems) = preProject
- EndProjectSection
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
- Release|Any CPU = Release|Any CPU
- Release|x64 = Release|x64
- Release|x86 = Release|x86
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Debug|Any CPU.ActiveCfg = Debug|x86
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Debug|Any CPU.Build.0 = Debug|x86
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Debug|x64.ActiveCfg = Debug|x64
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Debug|x64.Build.0 = Debug|x64
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Debug|x86.ActiveCfg = Debug|x86
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Debug|x86.Build.0 = Debug|x86
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Release|Any CPU.Build.0 = Release|Any CPU
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Release|x64.ActiveCfg = Release|x64
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Release|x64.Build.0 = Release|x64
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Release|x86.ActiveCfg = Release|x86
- {E2BEDC75-F1E7-4EF3-A1E6-CFD2D6592069}.Release|x86.Build.0 = Release|x86
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {F2B2C462-DD67-45CA-90B0-90C28C04F572}
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/nugets/iOS/AppDelegate.cs b/wrappers/csharp/tests/unit-tests/nugets/iOS/AppDelegate.cs
new file mode 100644
index 000000000..b33ca117d
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/iOS/AppDelegate.cs
@@ -0,0 +1,96 @@
+namespace iOS;
+
+using System;
+using System.Linq;
+using System.Reflection;
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using System.Threading;
+
+[Register("AppDelegate")]
+public class AppDelegate : UIApplicationDelegate
+{
+ public override UIWindow? Window
+ {
+ get;
+ set;
+ }
+
+ public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
+ {
+ // create a new window instance based on the screen size
+ Window = new UIWindow(UIScreen.MainScreen.Bounds);
+
+ // create a UIViewController with a single UILabel
+ var vc = new UIViewController();
+ vc.View!.AddSubview(new UILabel(Window!.Frame)
+ {
+ BackgroundColor = UIColor.SystemBackground,
+ TextAlignment = UITextAlignment.Center,
+ Text = "Hello, iOS!",
+ AutoresizingMask = UIViewAutoresizing.All,
+ });
+ Window.RootViewController = vc;
+
+ // make the window visible
+ Window.MakeKeyAndVisible();
+
+ int passedTests = 0;
+ int failedTests = 0;
+
+ // Get the current assembly
+ Assembly currentAssembly = Assembly.GetExecutingAssembly();
+
+ // Find all classes with the [TestClass] attribute
+ var testClasses = currentAssembly.GetTypes()
+ .Where(t => t.GetCustomAttributes(typeof(TestClassAttribute), false).Any());
+
+ foreach (var testClass in testClasses)
+ {
+ Console.WriteLine($"Running tests in {testClass.Name}...");
+
+ // Create an instance of the test class
+ var testClassInstance = Activator.CreateInstance(testClass);
+
+ // Find all methods with the [TestMethod] attribute
+ var testMethods = testClass.GetMethods()
+ .Where(m => m.GetCustomAttributes(typeof(TestMethodAttribute), false).Any());
+
+ foreach (var testMethod in testMethods)
+ {
+ try
+ {
+ Console.WriteLine($"Running {testMethod.Name}...");
+ testMethod.Invoke(testClassInstance, null);
+ Console.WriteLine($"{testMethod.Name} passed.");
+ passedTests++;
+ }
+ catch (TargetInvocationException ex) when (ex.InnerException is AssertFailedException)
+ {
+ Console.WriteLine($"{testMethod.Name} failed: {ex.InnerException.Message}");
+ failedTests++;
+ }
+ catch (Exception ex)
+ {
+ Console.WriteLine($"{testMethod.Name} encountered an unexpected error: {ex.Message}");
+ failedTests++;
+ }
+ }
+ }
+
+ // Summary
+ Console.WriteLine("\nTest Summary:");
+ Console.WriteLine($"Passed: {passedTests}");
+ Console.WriteLine($"Failed: {failedTests}");
+
+ Thread.Sleep(10000);
+
+ // Exit with non-zero code if any tests failed
+ if (failedTests > 0)
+ {
+ Environment.Exit(1);
+ }
+
+ Environment.Exit(0);
+ return true;
+ }
+}
diff --git a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Entitlements.plist b/wrappers/csharp/tests/unit-tests/nugets/iOS/Entitlements.plist
similarity index 68%
rename from wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Entitlements.plist
rename to wrappers/csharp/tests/unit-tests/nugets/iOS/Entitlements.plist
index 9ae599370..36a870670 100644
--- a/wrappers/csharp/tests/unit-tests/manual/xamarin-mac-modern/Entitlements.plist
+++ b/wrappers/csharp/tests/unit-tests/nugets/iOS/Entitlements.plist
@@ -1,6 +1,6 @@
-
+
-
-
+
+
diff --git a/wrappers/csharp/tests/unit-tests/nugets/iOS/Info.plist b/wrappers/csharp/tests/unit-tests/nugets/iOS/Info.plist
new file mode 100644
index 000000000..0e5915c07
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/iOS/Info.plist
@@ -0,0 +1,42 @@
+
+
+
+
+ CFBundleDisplayName
+ iOS
+ CFBundleIdentifier
+ com.companyname.iOS
+ CFBundleShortVersionString
+ 1.0
+ CFBundleVersion
+ 1.0
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIRequiredDeviceCapabilities
+
+ armv7
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/AppIcon.appiconset
+
+
diff --git a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/LaunchScreen.storyboard b/wrappers/csharp/tests/unit-tests/nugets/iOS/LaunchScreen.storyboard
similarity index 53%
rename from wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/LaunchScreen.storyboard
rename to wrappers/csharp/tests/unit-tests/nugets/iOS/LaunchScreen.storyboard
index 5d2e905aa..2296c6b7f 100644
--- a/wrappers/csharp/tests/integration-tests/nugets/xamarin-ios/LaunchScreen.storyboard
+++ b/wrappers/csharp/tests/unit-tests/nugets/iOS/LaunchScreen.storyboard
@@ -1,27 +1,26 @@
-
+
-
-
+
+
-
-
+
-
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/iOS/Main.cs b/wrappers/csharp/tests/unit-tests/nugets/iOS/Main.cs
new file mode 100644
index 000000000..76b70a7df
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/iOS/Main.cs
@@ -0,0 +1,6 @@
+using iOS;
+
+// This is the main entry point of the application.
+// If you want to use a different Application Delegate class from "AppDelegate"
+// you can specify it here.
+UIApplication.Main (args, null, typeof (AppDelegate));
diff --git a/wrappers/csharp/tests/unit-tests/nugets/iOS/Resources/LaunchScreen.xib b/wrappers/csharp/tests/unit-tests/nugets/iOS/Resources/LaunchScreen.xib
new file mode 100644
index 000000000..819020174
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/iOS/Resources/LaunchScreen.xib
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wrappers/csharp/tests/unit-tests/nugets/iOS/SceneDelegate.cs b/wrappers/csharp/tests/unit-tests/nugets/iOS/SceneDelegate.cs
new file mode 100644
index 000000000..3a1936cfa
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/iOS/SceneDelegate.cs
@@ -0,0 +1,54 @@
+namespace iOS;
+
+[Register ("SceneDelegate")]
+public class SceneDelegate : UIResponder, IUIWindowSceneDelegate {
+
+ [Export ("window")]
+ public UIWindow? Window { get; set; }
+
+ [Export ("scene:willConnectToSession:options:")]
+ public void WillConnect (UIScene scene, UISceneSession session, UISceneConnectionOptions connectionOptions)
+ {
+ // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`.
+ // If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
+ // This delegate does not imply the connecting scene or session are new (see UIApplicationDelegate `GetConfiguration` instead).
+ }
+
+ [Export ("sceneDidDisconnect:")]
+ public void DidDisconnect (UIScene scene)
+ {
+ // Called as the scene is being released by the system.
+ // This occurs shortly after the scene enters the background, or when its session is discarded.
+ // Release any resources associated with this scene that can be re-created the next time the scene connects.
+ // The scene may re-connect later, as its session was not neccessarily discarded (see UIApplicationDelegate `DidDiscardSceneSessions` instead).
+ }
+
+ [Export ("sceneDidBecomeActive:")]
+ public void DidBecomeActive (UIScene scene)
+ {
+ // Called when the scene has moved from an inactive state to an active state.
+ // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive.
+ }
+
+ [Export ("sceneWillResignActive:")]
+ public void WillResignActive (UIScene scene)
+ {
+ // Called when the scene will move from an active state to an inactive state.
+ // This may occur due to temporary interruptions (ex. an incoming phone call).
+ }
+
+ [Export ("sceneWillEnterForeground:")]
+ public void WillEnterForeground (UIScene scene)
+ {
+ // Called as the scene transitions from the background to the foreground.
+ // Use this method to undo the changes made on entering the background.
+ }
+
+ [Export ("sceneDidEnterBackground:")]
+ public void DidEnterBackground (UIScene scene)
+ {
+ // Called as the scene transitions from the foreground to the background.
+ // Use this method to save data, release shared resources, and store enough scene-specific state information
+ // to restore the scene back to its current state.
+ }
+}
diff --git a/wrappers/csharp/tests/unit-tests/nugets/iOS/iOS.csproj b/wrappers/csharp/tests/unit-tests/nugets/iOS/iOS.csproj
new file mode 100644
index 000000000..ea5f1ea66
--- /dev/null
+++ b/wrappers/csharp/tests/unit-tests/nugets/iOS/iOS.csproj
@@ -0,0 +1,34 @@
+
+
+ net8.0-ios
+ Exe
+ enable
+ true
+ 13.0
+ iossimulator-arm64
+ true
+ true
+ true
+
+ full
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wrappers/csharp/tests/unit-tests/nugets/unit-tests.py b/wrappers/csharp/tests/unit-tests/nugets/unit-tests.py
deleted file mode 100644
index bd62e8d64..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/unit-tests.py
+++ /dev/null
@@ -1,500 +0,0 @@
-import argparse
-import platform
-import subprocess
-import sys
-import os
-
-# Current dotnet bugs that prevents this code from being cleanly made
-# https://github.com/NuGet/Home/issues/7413 can't specify url as a fallback with local source
-# output = get_output(["dotnet", "restore", "--source", "../Nugets", "--source", "https://www.nuget.org/api/v3/", "--verbosity", "normal", "--no-cache", "--force"], cwd="./dotnet-framework")
-# --no-cache doesn't work https://github.com/NuGet/Home/issues/5619
-
-def get_output(args, cwd=None):
- try:
- result = subprocess.check_output(args, cwd=cwd, stderr=subprocess.STDOUT).decode(sys.stdout.encoding).strip()
- return result
- except subprocess.CalledProcessError as exc:
- result = exc.output.decode(sys.stdout.encoding).strip()
- return "EXEC FAILED!\n" + result
-
-def main():
- platforms = {
- "framework": test_dotnet_framework,
- "core": test_dotnet_core,
- "mac": test_mac_full,
- "mac-modern": test_mac_modern,
- "ios": test_ios,
- "android": test_android,
- }
-
- parser = argparse.ArgumentParser()
-
- parser.add_argument("-p", "--platform", default=platform.system().lower(),
- choices=platforms.keys(),
- help="The platform to build for.")
-
- args = parser.parse_args()
-
- script_dir = os.path.dirname(os.path.abspath(__file__))
- print("script directory :")
- print(script_dir)
-
- os.chdir(script_dir)
-
- version = ""
-
- with open('../../../config.txt', 'r') as filee:
- data=filee.read()
- version = data.split("version = \"")[1].split("\"", 1)[0]
-
- print("Current Devolutions Crypto Version :")
- print(version)
- print("====================================================================")
-
- platforms.get(args.platform)(script_dir, version, args)
-
-
-
-def test_dotnet_framework(script_dir, version, args):
- print("Nuget Cache Clear")
- print("==========================================================================")
-
- # CLEAN
- output = get_output(["dotnet", "nuget", "locals", "--clear", "all"], cwd="./dotnet-framework")
- print(output)
-
- print("Remove Local NuGet Source")
- print("==========================================================================")
- output = get_output(["nuget", "sources", "remove", "-Name", "LOCALDEVOCRYPTO"])
- print(output)
-
- print("Nuget Remove Nuget.org Devolutions.Crypto Package")
- print("==========================================================================")
- output = get_output(["dotnet", "remove", "package", "Devolutions.Crypto.Windows"], cwd="./dotnet-framework")
- print(output)
-
- # Restore
- print("Nuget Restore Global Packages")
- print("==========================================================================")
- output = get_output(["dotnet", "restore", "./dotnet-framework", "--verbosity", "normal"])
- print(output)
-
- print("Add Local NuGet Source")
- print("==========================================================================")
- print(os.path.join(script_dir, "Nugets"))
- output = get_output(["nuget", "sources", "add", "-Name", "LOCALDEVOCRYPTO", "-Source", os.path.join(script_dir, "Nugets")])
- print(output)
-
- print("Installing Nuget Package in Nugets Source")
- print("==========================================================================")
-
- output = get_output(["nuget", "add", "./Nugets/Devolutions.Crypto.Windows." + version + ".nupkg", "-Source", "LOCALDEVOCRYPTO"])
- print(output)
-
- print("Nuget Add Package Devolutions Crypto to project")
- print("==========================================================================")
- output = get_output(["dotnet", "add", "package", "Devolutions.Crypto.Windows", "--source", "../LOCALDEVOCRYPTO", "--version", version], cwd="./dotnet-framework")
- print(output)
-
- print("Building Unit tests for DOTNET FRAMEWORK with package config")
- print("=========================================================================")
-
- output = get_output(["msbuild.exe", "./dotnet-framework/dotnet-framework.csproj" , "/t:clean,build", "/p:configuration=debug;platform=x64"])
- print(output)
- if("FAILED" in output):
- exit(1)
-
- output= get_output(["msbuild.exe", "./dotnet-framework/dotnet-framework.csproj" , "/t:clean,build", "/p:configuration=debug;platform=x86"])
- print(output)
-
- if("FAILED" in output):
- exit(1)
-
- print("DOTNET FRAMEWORK UNIT TEST")
- print("=========================================================================")
-
-
- output = get_output(["vstest.console.exe", "--settings:./dotnet-framework/dotnet-framework.runsettings", "./dotnet-framework/bin/x64/Debug/dotnet-framework.dll"])
- print(output)
-
- if "Test Run Successful" not in output:
- exit(1)
-
- output = get_output(["vstest.console.exe", "--settings:./dotnet-framework/dotnet-framework.runsettings", "./dotnet-framework/bin/x86/Debug/dotnet-framework.dll"])
- print(output)
-
- if "Test Run Successful" not in output:
- exit(1)
-
-def test_dotnet_core(script_dir, version, args):
- # CLEAN
- output = get_output(["dotnet", "nuget", "locals", "--clear", "all"], cwd="./dotnet-core")
- print(output)
-
- print("Remove Local NuGet Source")
- print("==========================================================================")
- output = get_output(["nuget", "sources", "remove", "-Name", "LOCALDEVOCRYPTO"])
- print(output)
-
- print("Nuget Remove Nuget.org Devolutions.Crypto Package")
- print("==========================================================================")
- output = get_output(["dotnet", "remove", "package", "Devolutions.Crypto.Core"], cwd="./dotnet-core")
- print(output)
-
- # Restore
- print("Nuget Restore Global Packages")
- print("==========================================================================")
- output = get_output(["dotnet", "restore", "./dotnet-core", "--verbosity", "normal"])
- print(output)
-
- print("Add Local NuGet Source")
- print("==========================================================================")
- print(os.path.join(script_dir, "Nugets"))
- output = get_output(["nuget", "sources", "add", "-Name", "LOCALDEVOCRYPTO", "-Source", os.path.join(script_dir, "Nugets")])
- print(output)
-
- print("Installing Nuget Package in Nugets Source")
- print("==========================================================================")
-
- output = get_output(["nuget", "add", "./Nugets/Devolutions.Crypto.Core." + version + ".nupkg", "-Source", "LOCALDEVOCRYPTO"])
- print(output)
-
- print("Nuget Add Package Devolutions Crypto to project")
- print("==========================================================================")
- output = get_output(["dotnet", "add", "package", "Devolutions.Crypto.Core", "--source", "../LOCALDEVOCRYPTO", "--version", version], cwd="./dotnet-core")
- print(output)
-
- print("Building Unit tests for DOTNET CORE")
-
- output = get_output(["dotnet", "test", "./dotnet-core"])
- print(output)
-
- if "EXEC FAILED!" in output:
- exit(1)
-
-def test_mac_full(script_dir, version, args):
- print("Nuget Cache Clear")
- print("==========================================================================")
-
- # CLEAN
- output = get_output(["dotnet", "nuget", "locals", "--clear", "all"], cwd="./xamarin-mac-full")
- print(output)
-
- print("Remove Local NuGet Source")
- print("==========================================================================")
- output = get_output(["nuget", "sources", "remove", "-Name", "LOCALDEVOCRYPTO"])
- print(output)
-
- print("Nuget Remove Nuget.org Devolutions.Crypto Package")
- print("==========================================================================")
- output = get_output(["dotnet", "remove", "package", "Devolutions.Crypto.Mac.Full"], cwd="./xamarin-mac-full")
- print(output)
-
- # Restore
- print("Nuget Restore Global Packages")
- print("==========================================================================")
- output = get_output(["dotnet", "restore", "./xamarin-mac-full", "--verbosity", "normal"])
- print(output)
-
- print("Add Local NuGet Source")
- print("==========================================================================")
- print(os.path.join(script_dir, "Nugets"))
- output = get_output(["nuget", "sources", "add", "-Name", "LOCALDEVOCRYPTO", "-Source", os.path.join(script_dir, "Nugets")])
- print(output)
-
- print("Installing Nuget Package in Nugets Source")
- print("==========================================================================")
-
- output = get_output(["nuget", "add", "./Nugets/Devolutions.Crypto.Mac.Full." + version + ".nupkg", "-Source", "LOCALDEVOCRYPTO"])
- print(output)
-
- print("Nuget Add Package Devolutions Crypto to project")
- print("==========================================================================")
- output = get_output(["dotnet", "add", "package", "Devolutions.Crypto.Mac.Full", "--source", "../LOCALDEVOCRYPTO", "--version", version], cwd="./xamarin-mac-full")
- print(output)
-
- print("Building Unit tests for XAMARIN MAC FULL")
- print("=========================================================================")
-
- output = get_output(["msbuild", "./xamarin-mac-full/xamarin-mac-full.csproj" , "/t:clean,build", "/p:configuration=debug;platform=AnyCPU"])
- print(output)
- if("FAILED" in output):
- exit(1)
-
- print("XAMARIN MAC FULL UNIT TEST")
- print("=========================================================================")
-
- print("Installing NUnitConsole")
- output = get_output(["wget", "https://github.com/nunit/nunit-console/releases/download/v3.11.1/NUnit.Console-3.11.1.zip"])
- print(output)
-
- output = get_output(["unzip", "NUnit.Console-3.11.1.zip", "-d", "nunit-console"])
- print(output)
-
- print("Running tests")
- output = get_output(["mono", "./nunit-console/bin/net35/nunit3-console.exe", "./xamarin-mac-full/bin/Debug/xamarin-mac-full.dll"])
- print(output)
-
- if "Overall result: Failed" in output:
- exit(1)
-
-def test_mac_modern(script_dir, version, args):
- print("Nuget Cache Clear")
- print("==========================================================================")
-
- # CLEAN
- output = get_output(["dotnet", "nuget", "locals", "--clear", "all"], cwd="./xamarin-mac-modern")
- print(output)
-
- print("Remove Local NuGet Source")
- print("==========================================================================")
- output = get_output(["nuget", "sources", "remove", "-Name", "LOCALDEVOCRYPTO"])
- print(output)
-
- print("Nuget Remove Nuget.org Devolutions.Crypto Package")
- print("==========================================================================")
- output = get_output(["dotnet", "remove", "package", "Devolutions.Crypto.Mac.Modern"], cwd="./xamarin-mac-modern")
- print(output)
-
- # Restore
- print("Nuget Restore Global Packages")
- print("==========================================================================")
- output = get_output(["dotnet", "restore", "./xamarin-mac-modern", "--verbosity", "normal"])
- print(output)
-
- print("Add Local NuGet Source")
- print("==========================================================================")
- print(os.path.join(script_dir, "Nugets"))
- output = get_output(["nuget", "sources", "add", "-Name", "LOCALDEVOCRYPTO", "-Source", os.path.join(script_dir, "Nugets")])
- print(output)
-
- print("Installing Nuget Package in Nugets Source")
- print("==========================================================================")
-
- output = get_output(["nuget", "add", "./Nugets/Devolutions.Crypto.Mac.Modern." + version + ".nupkg", "-Source", "LOCALDEVOCRYPTO"])
- print(output)
-
- # Small hack to fix broken xamarin support
- # If a PackageReference element is not present in the csproj
- # The dotnet add package will fail with an unsupported project error.
- print("hack csproj")
-
- # DON'T TOUCH THE STRINGS!!!
- fixdata = """
-
-
-
-
-
- """
-
- filedata = ""
- with open('./xamarin-mac-modern/xamarin-mac-modern.csproj','r') as file:
- filedata = file.read()
- filedata = filedata.replace("""
- """, fixdata)
-
- with open('./xamarin-mac-modern/xamarin-mac-modern.csproj','w') as file:
- file.write(filedata)
-
- print("Nuget Add Package Devolutions Crypto to project")
- print("==========================================================================")
- output = get_output(["dotnet", "add", "package", "Devolutions.Crypto.Mac.Modern", "--source", "../LOCALDEVOCRYPTO", "--version", version], cwd="./xamarin-mac-modern")
- print(output)
-
- # Remove the package reference
- # It will leave the one that was added using dotnet add packge
- filedata = ""
- with open('./xamarin-mac-modern/xamarin-mac-modern.csproj','r') as file:
- filedata = file.read()
- filedata = filedata.replace("""""", "")
-
- with open('./xamarin-mac-modern/xamarin-mac-modern.csproj','w') as file:
- file.write(filedata)
-
- print("Building Unit tests")
- print("=========================================================================")
-
- output = get_output(["msbuild", "./xamarin-mac-modern/xamarin-mac-modern.csproj" , "/t:clean,build", "/p:configuration=debug;platform=AnyCPU"])
- print(output)
- if("FAILED" in output):
- exit(1)
-
- print("UNIT TESTING")
- print("=========================================================================")
-
- print("Running tests")
- output = get_output(["./xamarin-mac-modern/bin/Debug/xamarin-mac-modern.app/Contents/MacOS/xamarin-mac-modern"])
- print(output)
-
- if(not os.path.exists("./xamarin-mac-modern/TestResult.xml")):
- print("test result not created assume failed!")
- exit(1)
-
- with open("./xamarin-mac-modern/TestResult.xml", "r") as testResult:
- output = testResult.read()
- print(output)
- if "success=\"False\"" in output:
- exit(1)
-
-def test_ios(script_dir, version, args):
- print("Nuget Cache Clear")
- print("==========================================================================")
-
- # CLEAN
- output = get_output(["dotnet", "nuget", "locals", "--clear", "all"], cwd="./xamarin-ios")
- print(output)
-
- print("Remove Local NuGet Source")
- print("==========================================================================")
- output = get_output(["nuget", "sources", "remove", "-Name", "LOCALDEVOCRYPTO"])
- print(output)
-
- print("Nuget Remove Nuget.org Devolutions.Crypto Package")
- print("==========================================================================")
- output = get_output(["dotnet", "remove", "package", "Devolutions.Crypto.iOS"], cwd="./xamarin-ios")
- print(output)
-
- # Restore
- print("Nuget Restore Global Packages")
- print("==========================================================================")
- output = get_output(["dotnet", "restore", "./xamarin-ios", "--verbosity", "normal"])
- print(output)
-
- print("Add Local NuGet Source")
- print("==========================================================================")
- print(os.path.join(script_dir, "Nugets"))
- output = get_output(["nuget", "sources", "add", "-Name", "LOCALDEVOCRYPTO", "-Source", os.path.join(script_dir, "Nugets")])
- print(output)
-
- print("Installing Nuget Package in Nugets Source")
- print("==========================================================================")
-
- output = get_output(["nuget", "add", "./Nugets/Devolutions.Crypto.iOS." + version + ".nupkg", "-Source", "LOCALDEVOCRYPTO"])
- print(output)
-
- # Small hack to fix broken xamarin support
- # If a PackageReference element is not present in the csproj
- # The dotnet add package will fail with an unsupported project error.
- print("hack csproj")
-
- fixdata = """
-
-
-
-
-
- """
-
- filedata = ""
- with open('./xamarin-ios/xamarin-ios.csproj','r') as file:
- filedata = file.read()
- filedata = filedata.replace("""
- """, fixdata)
-
- with open('./xamarin-ios/xamarin-ios.csproj','w') as file:
- file.write(filedata)
-
- print("Nuget Add Package Devolutions Crypto to project")
- print("==========================================================================")
- output = get_output(["dotnet", "add", "package", "Devolutions.Crypto.iOS", "--source", "../LOCALDEVOCRYPTO", "--version", version], cwd="./xamarin-ios")
- print(output)
-
- # Remove the package reference
- # It will leave the one that was added using dotnet add packge
- filedata = ""
- with open('./xamarin-ios/xamarin-ios.csproj','r') as file:
- filedata = file.read()
- filedata = filedata.replace("""""", "")
-
- with open('./xamarin-ios/xamarin-ios.csproj','w') as file:
- file.write(filedata)
-
-
- print("Building Unit tests for XAMARIN IOS")
- print("=========================================================================")
-
- output = get_output(["msbuild", "./xamarin-ios/xamarin-ios.csproj" , "/t:clean,build", "/p:configuration=debug;platform=iPhoneSimulator"])
- print(output)
- if("FAILED" in output):
- exit(1)
-
- print("XAMARIN IOS UNIT TEST")
- print("=========================================================================")
-
- print("Running tests")
- output = get_output(["sh", "./xamarin-ios/test.sh"])
- print(output)
-
- with open("./xamarin-ios/test_results.xml", "r") as testResult:
- output = testResult.read()
- print(output)
- if "success=\"False\"" in output:
- exit(1)
-
-def test_android(script_dir, version, args):
- print("Nuget Cache Clear")
- print("==========================================================================")
-
- # CLEAN
- output = get_output(["dotnet", "nuget", "locals", "--clear", "all"], cwd="./xamarin-android")
- print(output)
-
- print("Remove Local NuGet Source")
- print("==========================================================================")
- output = get_output(["nuget", "sources", "remove", "-Name", "LOCALDEVOCRYPTO"])
- print(output)
-
- print("Nuget Remove Nuget.org Devolutions.Crypto Package")
- print("==========================================================================")
- output = get_output(["dotnet", "remove", "package", "Devolutions.Crypto.Android"], cwd="./xamarin-android")
- print(output)
-
- # Restore
- print("Nuget Restore Global Packages")
- print("==========================================================================")
- output = get_output(["dotnet", "restore", "./xamarin-android", "--verbosity", "normal"])
- print(output)
-
- print("Add Local NuGet Source")
- print("==========================================================================")
- print(os.path.join(script_dir, "Nugets"))
- output = get_output(["nuget", "sources", "add", "-Name", "LOCALDEVOCRYPTO", "-Source", os.path.join(script_dir, "Nugets")])
- print(output)
-
- print("Installing Nuget Package in Nugets Source")
- print("==========================================================================")
-
- output = get_output(["nuget", "add", "./Nugets/Devolutions.Crypto.Android." + version + ".nupkg", "-Source", "LOCALDEVOCRYPTO"])
- print(output)
-
- print("Nuget Add Package Devolutions Crypto to project")
- print("==========================================================================")
- output = get_output(["dotnet", "add", "package", "Devolutions.Crypto.Android", "--source", "../LOCALDEVOCRYPTO", "--version", version], cwd="./xamarin-android")
- print(output)
-
- print("Building Unit tests for XAMARIN ANDROID")
- print("=========================================================================")
-
- output = get_output(["msbuild", "./xamarin-android/xamarin-android.csproj" , "/t:clean,build,PackageForAndroid,SignAndroidPackage"])
- print(output)
- if("FAILED" in output):
- exit(1)
-
- print("Installing on emulator")
- output = get_output(["adb", "-s", "emulator-5554", "install", "-r", "./xamarin-android/bin/Debug/xamarin_android.xamarin_android-Signed.apk"])
- print(output)
-
- print("List instrumentation")
- output = get_output(["adb", "shell", "pm", "list", "instrumentation"])
- print(output)
-
- print("Running tests")
- output = get_output(["adb", "shell", "am", "instrument", "-w", "xamarin_android.xamarin_android/app.tests.TestInstrumentation"])
- print(output)
-
- if("INSTRUMENTATION_CODE: -1" not in output):
- exit(1)
-
-if __name__=="__main__":
- main()
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Assets/AboutAssets.txt b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Assets/AboutAssets.txt
deleted file mode 100644
index a9b0638eb..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Assets/AboutAssets.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-Any raw assets you want to be deployed with your application can be placed in
-this directory (and child directories) and given a Build Action of "AndroidAsset".
-
-These files will be deployed with your package and will be accessible using Android's
-AssetManager, like this:
-
-public class ReadAsset : Activity
-{
- protected override void OnCreate (Bundle bundle)
- {
- base.OnCreate (bundle);
-
- InputStream input = Assets.Open ("my_asset.txt");
- }
-}
-
-Additionally, some Android functions will automatically load asset files:
-
-Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/AutomatedTestSuiteActivity.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/AutomatedTestSuiteActivity.cs
deleted file mode 100644
index a6024697b..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/AutomatedTestSuiteActivity.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System;
-using Android.OS;
-using Xamarin.Android.NUnitLite;
-
-namespace xamarin_android
-{
- public abstract class AutomatedTestSuiteActivity : TestSuiteActivity
- {
- protected abstract string HostName { get; }
- protected abstract int HostPort { get; }
-
- protected override void OnCreate(Bundle bundle)
- {
- Intent.PutExtra("automated", true);
- Intent.PutExtra("remote", true);
- Intent.PutExtra("hostName", this.HostName);
- Intent.PutExtra("hostPort", this.HostPort);
-
- base.OnCreate(bundle);
- }
-
- public override void Finish()
- {
- System.Environment.Exit(0);
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/MainActivity.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/MainActivity.cs
deleted file mode 100644
index 3a3235b82..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/MainActivity.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System.Reflection;
-
-using Android.App;
-using Android.OS;
-using Xamarin.Android.NUnitLite;
-
-namespace xamarin_android
-{
- [Activity(Label = "xamarin-android", MainLauncher = true)]
- public class MainActivity : TestSuiteActivity
- {
- //protected override string HostName => "127.0.0.1";
-
- //protected override int HostPort => 4444;
-
- protected override void OnCreate(Bundle bundle)
- {
- // tests can be inside the main assembly
- AddTest(Assembly.GetExecutingAssembly());
- // or in any reference assemblies
- // AddTest (typeof (Your.Library.TestClass).Assembly);
-
- // Once you called base.OnCreate(), you cannot add more assemblies.
- base.OnCreate(bundle);
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Properties/AndroidManifest.xml b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Properties/AndroidManifest.xml
deleted file mode 100644
index f0e37c423..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Properties/AndroidManifest.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Properties/AssemblyInfo.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Properties/AssemblyInfo.cs
deleted file mode 100644
index 1c0a72607..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using Android.App;
-
-// Information about this assembly is defined by the following attributes.
-// Change them to the values specific to your project.
-
-[assembly: AssemblyTitle("xamarin-android")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("")]
-[assembly: AssemblyCopyright("")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
-// The form "{Major}.{Minor}.*" will automatically update the build and revision,
-// and "{Major}.{Minor}.{Build}.*" will update just the revision.
-
-[assembly: AssemblyVersion("1.0.0")]
-
-// The following attributes are used to specify the signing key for the assembly,
-// if desired. See the Mono documentation for more information about signing.
-
-//[assembly: AssemblyDelaySign(false)]
-//[assembly: AssemblyKeyFile("")]
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/AboutResources.txt b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/AboutResources.txt
deleted file mode 100644
index 10f52d460..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/AboutResources.txt
+++ /dev/null
@@ -1,44 +0,0 @@
-Images, layout descriptions, binary blobs and string dictionaries can be included
-in your application as resource files. Various Android APIs are designed to
-operate on the resource IDs instead of dealing with images, strings or binary blobs
-directly.
-
-For example, a sample Android app that contains a user interface layout (main.axml),
-an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
-would keep its resources in the "Resources" directory of the application:
-
-Resources/
- drawable/
- icon.png
-
- layout/
- main.axml
-
- values/
- strings.xml
-
-In order to get the build system to recognize Android resources, set the build action to
-"AndroidResource". The native Android APIs do not operate directly with filenames, but
-instead operate on resource IDs. When you compile an Android application that uses resources,
-the build system will package the resources for distribution and generate a class called "R"
-(this is an Android convention) that contains the tokens for each one of the resources
-included. For example, for the above Resources layout, this is what the R class would expose:
-
-public class R {
- public class drawable {
- public const int icon = 0x123;
- }
-
- public class layout {
- public const int main = 0x456;
- }
-
- public class strings {
- public const int first_string = 0xabc;
- public const int second_string = 0xbcd;
- }
-}
-
-You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main
-to reference the layout/main.axml file, or R.strings.first_string to reference the first
-string in the dictionary file values/strings.xml.
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/Resource.designer.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/Resource.designer.cs
deleted file mode 100644
index 2b1241ec7..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/Resource.designer.cs
+++ /dev/null
@@ -1,207 +0,0 @@
-#pragma warning disable 1591
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-[assembly: global::Android.Runtime.ResourceDesignerAttribute("xamarin_android.Resource", IsApplication=true)]
-
-namespace xamarin_android
-{
-
-
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "13.1.0.5")]
- public partial class Resource
- {
-
- static Resource()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- public static void UpdateIdValues()
- {
- global::Devolutions.Crypto.Android.Resource.String.app_name = global::xamarin_android.Resource.String.app_name;
- global::Devolutions.Crypto.Android.Resource.String.hello = global::xamarin_android.Resource.String.hello;
- global::Xamarin.Android.NUnitLite.Resource.Id.CreditsButton = global::xamarin_android.Resource.Id.CreditsButton;
- global::Xamarin.Android.NUnitLite.Resource.Id.OptionHostName = global::xamarin_android.Resource.Id.OptionHostName;
- global::Xamarin.Android.NUnitLite.Resource.Id.OptionPort = global::xamarin_android.Resource.Id.OptionPort;
- global::Xamarin.Android.NUnitLite.Resource.Id.OptionRemoteServer = global::xamarin_android.Resource.Id.OptionRemoteServer;
- global::Xamarin.Android.NUnitLite.Resource.Id.OptionsButton = global::xamarin_android.Resource.Id.OptionsButton;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultFullName = global::xamarin_android.Resource.Id.ResultFullName;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultMessage = global::xamarin_android.Resource.Id.ResultMessage;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultResultState = global::xamarin_android.Resource.Id.ResultResultState;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultRunSingleMethodTest = global::xamarin_android.Resource.Id.ResultRunSingleMethodTest;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsFailed = global::xamarin_android.Resource.Id.ResultsFailed;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsId = global::xamarin_android.Resource.Id.ResultsId;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsIgnored = global::xamarin_android.Resource.Id.ResultsIgnored;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsInconclusive = global::xamarin_android.Resource.Id.ResultsInconclusive;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsMessage = global::xamarin_android.Resource.Id.ResultsMessage;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsPassed = global::xamarin_android.Resource.Id.ResultsPassed;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultsResult = global::xamarin_android.Resource.Id.ResultsResult;
- global::Xamarin.Android.NUnitLite.Resource.Id.ResultStackTrace = global::xamarin_android.Resource.Id.ResultStackTrace;
- global::Xamarin.Android.NUnitLite.Resource.Id.RunEverythingButton = global::xamarin_android.Resource.Id.RunEverythingButton;
- global::Xamarin.Android.NUnitLite.Resource.Id.RunTestsButton = global::xamarin_android.Resource.Id.RunTestsButton;
- global::Xamarin.Android.NUnitLite.Resource.Id.TestSuiteListView = global::xamarin_android.Resource.Id.TestSuiteListView;
- global::Xamarin.Android.NUnitLite.Resource.Layout.options = global::xamarin_android.Resource.Layout.options;
- global::Xamarin.Android.NUnitLite.Resource.Layout.results = global::xamarin_android.Resource.Layout.results;
- global::Xamarin.Android.NUnitLite.Resource.Layout.Runner = global::xamarin_android.Resource.Layout.Runner;
- global::Xamarin.Android.NUnitLite.Resource.Layout.test_result = global::xamarin_android.Resource.Layout.test_result;
- global::Xamarin.Android.NUnitLite.Resource.Layout.test_suite = global::xamarin_android.Resource.Layout.test_suite;
- }
-
- public partial class Attribute
- {
-
- static Attribute()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Attribute()
- {
- }
- }
-
- public partial class Id
- {
-
- // aapt resource value: 0x7F010000
- public const int CreditsButton = 2130771968;
-
- // aapt resource value: 0x7F010001
- public const int OptionHostName = 2130771969;
-
- // aapt resource value: 0x7F010002
- public const int OptionPort = 2130771970;
-
- // aapt resource value: 0x7F010003
- public const int OptionRemoteServer = 2130771971;
-
- // aapt resource value: 0x7F010004
- public const int OptionsButton = 2130771972;
-
- // aapt resource value: 0x7F010005
- public const int ResultFullName = 2130771973;
-
- // aapt resource value: 0x7F010006
- public const int ResultMessage = 2130771974;
-
- // aapt resource value: 0x7F010007
- public const int ResultResultState = 2130771975;
-
- // aapt resource value: 0x7F010008
- public const int ResultRunSingleMethodTest = 2130771976;
-
- // aapt resource value: 0x7F01000A
- public const int ResultsFailed = 2130771978;
-
- // aapt resource value: 0x7F01000B
- public const int ResultsId = 2130771979;
-
- // aapt resource value: 0x7F01000C
- public const int ResultsIgnored = 2130771980;
-
- // aapt resource value: 0x7F01000D
- public const int ResultsInconclusive = 2130771981;
-
- // aapt resource value: 0x7F01000E
- public const int ResultsMessage = 2130771982;
-
- // aapt resource value: 0x7F01000F
- public const int ResultsPassed = 2130771983;
-
- // aapt resource value: 0x7F010010
- public const int ResultsResult = 2130771984;
-
- // aapt resource value: 0x7F010009
- public const int ResultStackTrace = 2130771977;
-
- // aapt resource value: 0x7F010011
- public const int RunEverythingButton = 2130771985;
-
- // aapt resource value: 0x7F010012
- public const int RunTestsButton = 2130771986;
-
- // aapt resource value: 0x7F010013
- public const int TestSuiteListView = 2130771987;
-
- static Id()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Id()
- {
- }
- }
-
- public partial class Layout
- {
-
- // aapt resource value: 0x7F020000
- public const int options = 2130837504;
-
- // aapt resource value: 0x7F020001
- public const int results = 2130837505;
-
- // aapt resource value: 0x7F020002
- public const int Runner = 2130837506;
-
- // aapt resource value: 0x7F020003
- public const int test_result = 2130837507;
-
- // aapt resource value: 0x7F020004
- public const int test_suite = 2130837508;
-
- static Layout()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Layout()
- {
- }
- }
-
- public partial class Mipmap
- {
-
- // aapt resource value: 0x7F030000
- public const int Icon = 2130903040;
-
- static Mipmap()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private Mipmap()
- {
- }
- }
-
- public partial class String
- {
-
- // aapt resource value: 0x7F040000
- public const int app_name = 2130968576;
-
- // aapt resource value: 0x7F040001
- public const int hello = 2130968577;
-
- static String()
- {
- global::Android.Runtime.ResourceIdManager.UpdateIdValues();
- }
-
- private String()
- {
- }
- }
- }
-}
-#pragma warning restore 1591
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-hdpi/Icon.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-hdpi/Icon.png
deleted file mode 100644
index df45338eb..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-hdpi/Icon.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:43b920c6ffda41228829fe935affc6412bf1631a5d5d697fdf177d9cb1d30378
-size 2201
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-mdpi/Icon.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-mdpi/Icon.png
deleted file mode 100644
index c2701f764..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-mdpi/Icon.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:cc588b29d17625c317da71db500cf423a5b803ab2c36414e0911183c9a58be58
-size 1410
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-xhdpi/Icon.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-xhdpi/Icon.png
deleted file mode 100644
index 1428a71e8..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-xhdpi/Icon.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:dce05a36290a2df3718604cc1c3656bcd42c493549e7f41e46450e77f23f348c
-size 3237
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-xxhdpi/Icon.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-xxhdpi/Icon.png
deleted file mode 100644
index 2a7994bb8..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-xxhdpi/Icon.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:cbf854ef8e7f651a7dd4a26908c6d548e3016f7698c28b3f8c4bef2c9a5214dd
-size 5414
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-xxxhdpi/Icon.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-xxxhdpi/Icon.png
deleted file mode 100644
index f7c2d3fd6..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/Resources/mipmap-xxxhdpi/Icon.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:4a5924be7d266989aac3a652a6cb19ac5db07b3a6a12d9f5c9554309093cbbc9
-size 7825
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/TestInstrumentation.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/TestInstrumentation.cs
deleted file mode 100644
index df6441711..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/TestInstrumentation.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-using System.Reflection;
-using Android.App;
-using Android.Runtime;
-using Xamarin.Android.NUnitLite;
-
-namespace xamarin_android
-{
- [Instrumentation(Name = "app.tests.TestInstrumentation")]
- public class TestInstrumentation : TestSuiteInstrumentation
- {
- public TestInstrumentation(IntPtr handle, JniHandleOwnership transfer) : base(handle, transfer) { }
-
- protected override void AddTests()
- {
- AddTest(Assembly.GetExecutingAssembly());
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/TestsSample.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/TestsSample.cs
deleted file mode 100644
index 861400d22..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/TestsSample.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using NUnit.Framework;
-
-namespace xamarin_android
-{
- [TestFixture]
- public class TestsSample
- {
-
- [SetUp]
- public void Setup() { }
-
-
- [TearDown]
- public void Tear() { }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/xamarin-android.csproj b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/xamarin-android.csproj
deleted file mode 100644
index 3961b7b92..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/xamarin-android.csproj
+++ /dev/null
@@ -1,141 +0,0 @@
-
-
-
- Debug
- AnyCPU
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}
- {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Library
- xamarin_android
- xamarin-android
- v13.0
- win;win-x86;win-x64
- win;win-x86;win-x64
- True
- Resources\Resource.designer.cs
- Resource
- Resources
- Assets
- false
- Properties\AndroidManifest.xml
- True
-
-
- true
- full
- false
- bin\Debug
- DEBUG;XAMARIN_ANDROID
- prompt
- 4
- None
-
-
- true
- d8
- true
- false
- false
- false
- false
- armeabi-v7a;arm64-v8a;x86;x86_64
-
-
-
- true
- pdbonly
- true
- bin\Release
- XAMARIN_ANDROID
- prompt
- 4
- true
-
-
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- TestArgon2Parameters.cs
-
-
- TestClasses.cs
-
-
- TestData.cs
-
-
- TestManaged.cs
-
-
- TestNative.cs
-
-
- TestUtils.cs
-
-
- Conformity.cs
-
-
- TestLegacy.cs
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/xamarin-android.sln b/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/xamarin-android.sln
deleted file mode 100644
index 2d0fa1ea3..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-android/xamarin-android.sln
+++ /dev/null
@@ -1,25 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 17
-VisualStudioVersion = 17.4.33205.214
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xamarin-android", "xamarin-android.csproj", "{87D2024D-F4EB-49F8-920E-E8EC055BB65A}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {87D2024D-F4EB-49F8-920E-E8EC055BB65A}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {C65AE533-31B2-4959-9CA4-5ABA29FF2FDE}
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Entitlements.plist b/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Entitlements.plist
deleted file mode 100644
index 9ae599370..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Entitlements.plist
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Info.plist b/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Info.plist
deleted file mode 100644
index e7b58362d..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Info.plist
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
- CFBundleName
- xamarin-ios
- CFBundleIdentifier
- com.companyname.xamarin-ios
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1.0
- LSRequiresIPhoneOS
-
- MinimumOSVersion
- 15.2
- UIDeviceFamily
-
- 1
- 2
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UILaunchStoryboardName
- LaunchScreen
- NSAppTransportSecurity
-
- NSAllowsArbitraryLoads
-
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/LaunchScreen.storyboard b/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/LaunchScreen.storyboard
deleted file mode 100644
index 5d2e905aa..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/LaunchScreen.storyboard
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Main.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Main.cs
deleted file mode 100644
index 5c630a646..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Main.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Linq;
-using System.Collections.Generic;
-
-using Foundation;
-using UIKit;
-
-namespace xamarin_ios
-{
- public class Application
- {
- // This is the main entry point of the application.
- static void Main(string[] args)
- {
- // if you want to use a different Application Delegate class from "UnitTestAppDelegate"
- // you can specify it here.
- UIApplication.Main(args, null, "UnitTestAppDelegate");
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Touch.Server.exe b/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Touch.Server.exe
deleted file mode 100644
index f2eeda312..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/Touch.Server.exe
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f7674001b74b9ee39a3526efd82355e5fcc2ddb8eff10eccf8f0a6d285167f18
-size 39424
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/UnitTestAppDelegate.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/UnitTestAppDelegate.cs
deleted file mode 100644
index f4bee0131..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/UnitTestAppDelegate.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-using System;
-using System.Linq;
-using System.Collections.Generic;
-
-using Foundation;
-using UIKit;
-using MonoTouch.NUnit.UI;
-
-namespace xamarin_ios
-{
- // The UIApplicationDelegate for the application. This class is responsible for launching the
- // User Interface of the application, as well as listening (and optionally responding) to
- // application events from iOS.
- [Register("UnitTestAppDelegate")]
- public partial class UnitTestAppDelegate : UIApplicationDelegate
- {
- // class-level declarations
- UIWindow window;
- TouchRunner runner;
-
- //
- // This method is invoked when the application has loaded and is ready to run. In this
- // method you should instantiate the window, load the UI into it and then make the window
- // visible.
- //
- // You have 17 seconds to return from this method, or iOS will terminate your application.
- //
- public override bool FinishedLaunching(UIApplication app, NSDictionary options)
- {
- // create a new window instance based on the screen size
- window = new UIWindow(UIScreen.MainScreen.Bounds);
- runner = new TouchRunner(window);
-
- // register every tests included in the main application/assembly
- runner.Add(System.Reflection.Assembly.GetExecutingAssembly());
-
- window.RootViewController = new UINavigationController(runner.GetViewController());
-
- // make the window visible
- window.MakeKeyAndVisible();
-
- return true;
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/test.sh b/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/test.sh
deleted file mode 100644
index a7fc3d7f2..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/test.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-runtime=$(xcrun simctl list runtimes | grep iOS | tail -1 | cut -d ")" -f 2 | cut -d " " -f 3)
-deviceType=$(xcrun simctl list devicetypes | grep iPhone | cut -d "(" -f 2 | cut -d ")" -f 1 | grep com | tail -1)
-echo $runtime
-echo $deviceType
-export MONOTOUCH_ROOT=/Library/Frameworks/Xamarin.iOS.framework/Versions/Current
-
-# touch server source https://github.com/prashantvc/Touch.Server/
-
-currentDir=$(/bin/pwd)
-
-echo $currentDir
-
-TEST_RESULT="${currentDir}/xamarin-ios/test_results.xml"
-
-echo 'Delete test result'
-
-rm -rf $TEST_RESULT
-mono --debug ./xamarin-ios/Touch.Server.exe \
---launchsim "${currentDir}/xamarin-ios/bin/iPhoneSimulator/Debug/xamarin-ios.app" \
--autoexit \
--skipheader \
--logfile=$TEST_RESULT \
---verbose \
---device=":v2:runtime=${runtime},devicetype=${deviceType}"
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/xamarin-ios.csproj b/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/xamarin-ios.csproj
deleted file mode 100644
index 1352c2313..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/xamarin-ios.csproj
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
- Debug
- iPhoneSimulator
- {DBD54C31-6F32-43A8-B09E-D21430B61170}
- {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Exe
- xamarin_ios
- xamarin-ios
- Resources
- win;win-x86;win-x64
- win;win-x86;win-x64
-
-
- true
- full
- false
- bin\iPhoneSimulator\Debug
- __IOS__;__MOBILE__;__UNIFIED__;DEBUG;XAMARIN_IOS
- prompt
- 4
- iPhone Developer
- true
- true
- true
- 14334
- None
- x86_64
- NSUrlSessionHandler
- --setenv=NUNIT_ENABLE_XML_OUTPUT=true --setenv=NUNIT_SKIP_LOG_HEADER=true
-
-
- pdbonly
- true
- bin\iPhone\Release
- prompt
- 4
- iPhone Developer
- true
- true
- Entitlements.plist
- SdkOnly
- ARM64
- NSUrlSessionHandler
-
-
- true
- bin\iPhoneSimulator\Release
- __IOS__;__MOBILE__;__UNIFIED__;XAMARIN_IOS
- prompt
- 4
- iPhone Developer
- true
- None
- x86_64
- NSUrlSessionHandler
- --setenv=NUNIT_ENABLE_XML_OUTPUT=true --setenv=NUNIT_SKIP_LOG_HEADER=true
-
-
- true
- full
- false
- bin\iPhone\Debug
- DEBUG;
- prompt
- 4
- iPhone Developer
- true
- true
- true
- true
- true
- Entitlements.plist
- 10273
- SdkOnly
- ARM64
- NSUrlSessionHandler
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- TestArgon2Parameters.cs
-
-
- TestClasses.cs
-
-
- TestData.cs
-
-
- TestManaged.cs
-
-
- TestNative.cs
-
-
- TestUtils.cs
-
-
- Conformity.cs
-
-
- TestLegacy.cs
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/xamarin-ios.sln b/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/xamarin-ios.sln
deleted file mode 100644
index 1a2feb028..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-ios/xamarin-ios.sln
+++ /dev/null
@@ -1,23 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xamarin-ios", "xamarin-ios.csproj", "{DBD54C31-6F32-43A8-B09E-D21430B61170}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|iPhoneSimulator = Debug|iPhoneSimulator
- Release|iPhone = Release|iPhone
- Release|iPhoneSimulator = Release|iPhoneSimulator
- Debug|iPhone = Debug|iPhone
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Release|iPhone.ActiveCfg = Release|iPhone
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Release|iPhone.Build.0 = Release|iPhone
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Debug|iPhone.ActiveCfg = Debug|iPhone
- {DBD54C31-6F32-43A8-B09E-D21430B61170}.Debug|iPhone.Build.0 = Debug|iPhone
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-full/xamarin-mac-full.csproj b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-full/xamarin-mac-full.csproj
deleted file mode 100644
index ab28d0af7..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-full/xamarin-mac-full.csproj
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {B405A8B5-7014-433C-B4EC-2FDD836C0442}
- {A3F8F2AB-B479-4A4A-A458-A89E7DC349F1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Library
- xamarin_mac_full
- xamarin-mac-full
- Resources
- v4.5
- win;win-x86;win-x64
- win;win-x86;win-x64
- true
-
-
- true
- full
- false
- bin\Debug
- __MACOS__;DEBUG;XAMARIN_MAC_FULL;
- prompt
- 4
- false
- false
- false
- false
- false
- None
-
-
- true
- bin\Release
- __MACOS__;XAMARIN_MAC_FULL;
- prompt
- 4
- false
- false
- false
- false
- false
- None
-
-
-
-
-
-
-
- Conformity.cs
-
-
- TestArgon2Parameters.cs
-
-
- TestClasses.cs
-
-
- TestData.cs
-
-
- TestManaged.cs
-
-
- TestNative.cs
-
-
- TestUtils.cs
-
-
- TestLegacy.cs
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-full/xamarin-mac-full.sln b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-full/xamarin-mac-full.sln
deleted file mode 100644
index ad4940511..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-full/xamarin-mac-full.sln
+++ /dev/null
@@ -1,17 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xamarin-mac-full", "xamarin-mac-full.csproj", "{B405A8B5-7014-433C-B4EC-2FDD836C0442}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {B405A8B5-7014-433C-B4EC-2FDD836C0442}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {B405A8B5-7014-433C-B4EC-2FDD836C0442}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {B405A8B5-7014-433C-B4EC-2FDD836C0442}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {B405A8B5-7014-433C-B4EC-2FDD836C0442}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
-EndGlobal
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/AppDelegate.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/AppDelegate.cs
deleted file mode 100644
index e2b3c77c4..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/AppDelegate.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using AppKit;
-using Foundation;
-
-namespace xamarinmacmodern
-{
- [Register("AppDelegate")]
- public class AppDelegate : NSApplicationDelegate
- {
- public AppDelegate()
- {
- }
-
- public override void DidFinishLaunching(NSNotification notification)
- {
- // Insert code here to initialize your application
- }
-
- public override void WillTerminate(NSNotification notification)
- {
- // Insert code here to tear down your application
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png
deleted file mode 100644
index ddfadb90c..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:5fee79574e6469b27db4e87249ac43135bb149c1c3b8f9e86ab750e664fcec00
-size 8125
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png
deleted file mode 100644
index e870b0f98..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:23b427eef2cb9dfdf4375e69b59c28fc37a3428c8470ea5c9df0a56c5ce5cfd4
-size 20798
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png
deleted file mode 100644
index be00c33f9..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:c8753cf3682275fc10bdb859cc58f351cc164084106103332bd9a1698d0a312e
-size 711
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png
deleted file mode 100644
index 8a257dc1e..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:68f092cf03280792dff8f57fc44d05e01867cf202b5e1ca358f5db467965a59e
-size 1484
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png
deleted file mode 100644
index e870b0f98..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:23b427eef2cb9dfdf4375e69b59c28fc37a3428c8470ea5c9df0a56c5ce5cfd4
-size 20798
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png
deleted file mode 100644
index 7cf723f24..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9a4aded91ae57a8fffb968ece0c166f99d1224f26de5e29759c6254c6e6fb550
-size 59335
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png
deleted file mode 100644
index 8a257dc1e..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:68f092cf03280792dff8f57fc44d05e01867cf202b5e1ca358f5db467965a59e
-size 1484
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png
deleted file mode 100644
index 08732f646..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:141313b0304705885f6cdc4d303366f316ee830524751cddb743bf2853be5c87
-size 3428
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png
deleted file mode 100644
index 7cf723f24..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9a4aded91ae57a8fffb968ece0c166f99d1224f26de5e29759c6254c6e6fb550
-size 59335
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png
deleted file mode 100644
index a377f68b6..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9b87eb9ca78f2df0969dc5ee6e265825f84f9f582072822fb97b3755b37ad42a
-size 177632
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/Contents.json b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/Contents.json
deleted file mode 100644
index 6b2854529..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/AppIcon.appiconset/Contents.json
+++ /dev/null
@@ -1,68 +0,0 @@
-{
- "images": [
- {
- "filename": "AppIcon-16.png",
- "size": "16x16",
- "scale": "1x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-16@2x.png",
- "size": "16x16",
- "scale": "2x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-32.png",
- "size": "32x32",
- "scale": "1x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-32@2x.png",
- "size": "32x32",
- "scale": "2x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-128.png",
- "size": "128x128",
- "scale": "1x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-128@2x.png",
- "size": "128x128",
- "scale": "2x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-256.png",
- "size": "256x256",
- "scale": "1x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-256@2x.png",
- "size": "256x256",
- "scale": "2x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-512.png",
- "size": "512x512",
- "scale": "1x",
- "idiom": "mac"
- },
- {
- "filename": "AppIcon-512@2x.png",
- "size": "512x512",
- "scale": "2x",
- "idiom": "mac"
- }
- ],
- "info": {
- "version": 1,
- "author": "xcode"
- }
-}
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/Contents.json b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/Contents.json
deleted file mode 100644
index 4caf392f9..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Assets.xcassets/Contents.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Entitlements.plist b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Entitlements.plist
deleted file mode 100644
index 9ae599370..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Entitlements.plist
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Info.plist b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Info.plist
deleted file mode 100644
index bebdd95bb..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Info.plist
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
- CFBundleName
- xamarin-mac-modern
- CFBundleIdentifier
- com.companyname.xamarin-mac-modern
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1
- LSMinimumSystemVersion
- 10.15
- CFBundleDevelopmentRegion
- en
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- APPL
- CFBundleSignature
- ????
- NSHumanReadableCopyright
-
- NSPrincipalClass
- NSApplication
- NSMainStoryboardFile
- Main
- XSAppIconAssets
- Assets.xcassets/AppIcon.appiconset
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Main.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Main.cs
deleted file mode 100644
index c2258f7ea..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Main.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System.IO;
-using System.Reflection;
-using AppKit;
-using NUnitLite;
-
-namespace xamarinmacmodern
-{
- static class MainClass
- {
- static void Main(string[] args)
- {
- new AutoRun(Assembly.GetExecutingAssembly()).Execute(new string[] { "--out=../../../../../TestResult.xml"});
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Main.storyboard b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Main.storyboard
deleted file mode 100644
index 377d477f1..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/Main.storyboard
+++ /dev/null
@@ -1,717 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Default
-
-
-
-
-
-
- Left to Right
-
-
-
-
-
-
- Right to Left
-
-
-
-
-
-
-
-
-
-
- Default
-
-
-
-
-
-
- Left to Right
-
-
-
-
-
-
- Right to Left
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/ViewController.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/ViewController.cs
deleted file mode 100644
index 1697dff22..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/ViewController.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System;
-
-using AppKit;
-using Foundation;
-
-namespace xamarinmacmodern
-{
- public partial class ViewController : NSViewController
- {
- public ViewController(IntPtr handle) : base(handle)
- {
- }
-
- public override void ViewDidLoad()
- {
- base.ViewDidLoad();
-
- // Do any additional setup after loading the view.
- }
-
- public override NSObject RepresentedObject
- {
- get
- {
- return base.RepresentedObject;
- }
- set
- {
- base.RepresentedObject = value;
- // Update the view, if already loaded.
- }
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/ViewController.designer.cs b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/ViewController.designer.cs
deleted file mode 100644
index 7f26bc5ae..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/ViewController.designer.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-// WARNING
-//
-// This file has been generated automatically by Xamarin Studio to store outlets and
-// actions made in the UI designer. If it is removed, they will be lost.
-// Manual changes to this file may not be handled correctly.
-//
-using Foundation;
-
-namespace xamarinmacmodern
-{
- [Register("ViewController")]
- partial class ViewController
- {
- void ReleaseDesignerOutlets()
- {
- }
- }
-}
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/xamarin-mac-modern.csproj b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/xamarin-mac-modern.csproj
deleted file mode 100644
index 20d56a402..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/xamarin-mac-modern.csproj
+++ /dev/null
@@ -1,119 +0,0 @@
-
-
-
- Debug
- AnyCPU
- {C014C599-8BEC-48F8-9860-02466A19F077}
- {A3F8F2AB-B479-4A4A-A458-A89E7DC349F1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- Exe
- xamarin_mac_modern
- xamarin-mac-modern
- v2.0
- Xamarin.Mac
- win;win-x86;win-x64
- win;win-x86;win-x64
- Resources
-
-
- true
- full
- false
- bin\Debug
- __UNIFIED__;__MACOS__;DEBUG;XAMARIN_MAC_MODERN
- prompt
- 4
- false
- Mac Developer
- false
- false
- false
- true
- true
- None
-
-
- true
- bin\Release
- __UNIFIED__;__MACOS__;XAMARIN_MAC_MODERN
- prompt
- 4
- false
- true
- false
- true
- true
- true
- SdkOnly
- None
-
-
-
-
-
-
-
-
-
- 3.13.3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ViewController.cs
-
-
- TestArgon2Parameters.cs
-
-
- Conformity.cs
-
-
- TestClasses.cs
-
-
- TestData.cs
-
-
- TestManaged.cs
-
-
- TestNative.cs
-
-
- TestUtils.cs
-
-
- TestLegacy.cs
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/xamarin-mac-modern.sln b/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/xamarin-mac-modern.sln
deleted file mode 100644
index be424e357..000000000
--- a/wrappers/csharp/tests/unit-tests/nugets/xamarin-mac-modern/xamarin-mac-modern.sln
+++ /dev/null
@@ -1,21 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xamarin-mac-modern", "xamarin-mac-modern.csproj", "{C014C599-8BEC-48F8-9860-02466A19F077}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {C014C599-8BEC-48F8-9860-02466A19F077}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {C014C599-8BEC-48F8-9860-02466A19F077}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {C014C599-8BEC-48F8-9860-02466A19F077}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {C014C599-8BEC-48F8-9860-02466A19F077}.Release|Any CPU.Build.0 = Release|Any CPU
- {EACFD119-769E-4E6C-89B7-A6CE3757C431}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {EACFD119-769E-4E6C-89B7-A6CE3757C431}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {EACFD119-769E-4E6C-89B7-A6CE3757C431}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {EACFD119-769E-4E6C-89B7-A6CE3757C431}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
-EndGlobal