Commit 52402eef authored by Aryan Patel's avatar Aryan Patel

Demo1

parent db4f64d4
# paperchase_app
A new Flutter project.
## Getting Started
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints.
#
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
# invoked from the command line by running `flutter analyze`.
# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
include: package:flutter_lints/flutter.yaml
linter:
# The lint rules applied to this project can be customized in the
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
# included above or to enable additional rules. A list of all available lints
# and their documentation is published at https://dart.dev/lints.
#
# Instead of disabling a lint rule for the entire project in the
# section below, it can also be suppressed for a single line of code
# or a specific dart file by using the `// ignore: name_of_lint` and
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
.cxx/
# Remember to never publicly share your keystore.
# See https://flutter.dev/to/reference-keystore
key.properties
**/*.keystore
**/*.jks
plugins {
id("com.android.application")
id("kotlin-android")
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id("dev.flutter.flutter-gradle-plugin")
}
android {
namespace = "com.example.paperchase_app"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.paperchase_app"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = flutter.minSdkVersion
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig = signingConfigs.getByName("debug")
}
}
}
flutter {
source = "../.."
}
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="paperchase_app"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:taskAffinity=""
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
<!-- Required to query activities that can process text, see:
https://developer.android.com/training/package-visibility and
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
<queries>
<intent>
<action android:name="android.intent.action.PROCESS_TEXT"/>
<data android:mimeType="text/plain"/>
</intent>
</queries>
</manifest>
package com.example.paperchase_app
import io.flutter.embedding.android.FlutterActivity
class MainActivity : FlutterActivity()
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="?android:colorBackground" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
allprojects {
repositories {
google()
mavenCentral()
}
}
val newBuildDir: Directory = rootProject.layout.buildDirectory.dir("../../build").get()
rootProject.layout.buildDirectory.value(newBuildDir)
subprojects {
val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
project.layout.buildDirectory.value(newSubprojectBuildDir)
}
subprojects {
project.evaluationDependsOn(":app")
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true
android.enableJetifier=true
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="android" name="Android">
<configuration>
<option name="ALLOW_USER_CONFIGURATION" value="false" />
<option name="GEN_FOLDER_RELATIVE_PATH_APT" value="/gen" />
<option name="GEN_FOLDER_RELATIVE_PATH_AIDL" value="/gen" />
<option name="MANIFEST_FILE_RELATIVE_PATH" value="/app/src/main/AndroidManifest.xml" />
<option name="RES_FOLDER_RELATIVE_PATH" value="/app/src/main/res" />
<option name="ASSETS_FOLDER_RELATIVE_PATH" value="/app/src/main/assets" />
<option name="LIBS_FOLDER_RELATIVE_PATH" value="/app/src/main/libs" />
<option name="PROGUARD_LOGS_FOLDER_RELATIVE_PATH" value="/app/src/main/proguard_logs" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/app/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/app/src/main/kotlin" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" generated="true" />
</content>
<orderEntry type="jdk" jdkName="Android API 29 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Flutter for Android" level="project" />
<orderEntry type="library" name="KotlinJavaRuntime" level="project" />
</component>
</module>
pluginManagement {
val flutterSdkPath = run {
val properties = java.util.Properties()
file("local.properties").inputStream().use { properties.load(it) }
val flutterSdkPath = properties.getProperty("flutter.sdk")
require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }
flutterSdkPath
}
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
id("com.android.application") version "8.7.0" apply false
id("org.jetbrains.kotlin.android") version "1.8.22" apply false
}
include(":app")
{"inputs":[],"outputs":[]}
\ No newline at end of file
{"inputs":["I:\\CSC190 Project\\paperchase_app\\.dart_tool\\package_config_subset"],"outputs":["I:\\CSC190 Project\\paperchase_app\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]}
\ No newline at end of file
{"inputs":[],"outputs":[]}
\ No newline at end of file
#- File Locator -
listingFile=../../../../outputs/apk/debug/output-metadata.json
2packages/cupertino_icons/assets/CupertinoIcons.ttf  asset2packages/cupertino_icons/assets/CupertinoIcons.ttf
\ No newline at end of file
{"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]}
\ No newline at end of file
[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}]
\ No newline at end of file
{"format-version":[1,0,0],"native-assets":{}}
\ No newline at end of file
{
"version": 3,
"artifactType": {
"type": "COMPATIBLE_SCREEN_MANIFEST",
"kind": "Directory"
},
"applicationId": "com.example.paperchase_app",
"variantName": "debug",
"elements": []
}
\ No newline at end of file
{
"info": {
"name": "arm64-v8a",
"bitness": 64,
"isDefault": true,
"isDeprecated": false,
"architecture": "arm64",
"triple": "aarch64-linux-android",
"llvmTriple": "aarch64-none-linux-android"
},
"cxxBuildFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\arm64-v8a",
"soFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\arm64-v8a",
"soRepublishFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cmake\\profile\\obj\\arm64-v8a",
"abiPlatformVersion": 21,
"cmake": {
"effectiveConfiguration": {
"inheritEnvironments": [],
"variables": []
}
},
"variant": {
"buildSystemArgumentList": [
"-Wno-dev",
"--no-warn-unused-cli"
],
"cFlagsList": [],
"cppFlagsList": [],
"variantName": "profile",
"isDebuggableEnabled": true,
"validAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"buildTargetSet": [],
"implicitBuildTargetSet": [],
"cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name",
"module": {
"cxxFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx",
"intermediatesBaseFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates",
"intermediatesFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx",
"gradleModulePathName": ":app",
"moduleRootFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app",
"moduleBuildFile": "I:\\CSC190 Project\\paperchase_app\\android\\app\\build.gradle.kts",
"makeFile": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"buildSystem": "CMAKE",
"ndkFolder": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"ndkFolderBeforeSymLinking": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"ndkVersion": "26.3.11579264",
"ndkSupportedAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"ndkDefaultAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"ndkDefaultStl": "LIBCXX_STATIC",
"ndkMetaPlatforms": {
"min": 21,
"max": 34,
"aliases": {
"20": 19,
"25": 24,
"J": 16,
"J-MR1": 17,
"J-MR2": 18,
"K": 19,
"L": 21,
"L-MR1": 22,
"M": 23,
"N": 24,
"N-MR1": 24,
"O": 26,
"O-MR1": 27,
"P": 28,
"Q": 29,
"R": 30,
"S": 31,
"Sv2": 32,
"Tiramisu": 33,
"UpsideDownCake": 34
}
},
"ndkMetaAbiList": [
{
"name": "armeabi-v7a",
"bitness": 32,
"isDefault": true,
"isDeprecated": false,
"architecture": "arm",
"triple": "arm-linux-androideabi",
"llvmTriple": "armv7-none-linux-androideabi"
},
{
"name": "arm64-v8a",
"bitness": 64,
"isDefault": true,
"isDeprecated": false,
"architecture": "arm64",
"triple": "aarch64-linux-android",
"llvmTriple": "aarch64-none-linux-android"
},
{
"name": "x86",
"bitness": 32,
"isDefault": true,
"isDeprecated": false,
"architecture": "x86",
"triple": "i686-linux-android",
"llvmTriple": "i686-none-linux-android"
},
{
"name": "x86_64",
"bitness": 64,
"isDefault": true,
"isDeprecated": false,
"architecture": "x86_64",
"triple": "x86_64-linux-android",
"llvmTriple": "x86_64-none-linux-android"
}
],
"cmakeToolchainFile": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake",
"cmake": {
"cmakeExe": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\cmake.exe"
},
"stlSharedObjectMap": {
"LIBCXX_SHARED": {
"armeabi-v7a": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\arm-linux-androideabi\\libc++_shared.so",
"arm64-v8a": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\aarch64-linux-android\\libc++_shared.so",
"x86": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\i686-linux-android\\libc++_shared.so",
"x86_64": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\x86_64-linux-android\\libc++_shared.so"
},
"LIBCXX_STATIC": {},
"NONE": {},
"SYSTEM": {}
},
"project": {
"rootBuildGradleFolder": "I:\\CSC190 Project\\paperchase_app\\android",
"sdkFolder": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk",
"isBuildOnlyTargetAbiEnabled": true,
"isCmakeBuildCohabitationEnabled": false,
"isPrefabEnabled": false
},
"outputOptions": [],
"ninjaExe": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe",
"hasBuildTimeInformation": true
},
"prefabClassPaths": [],
"prefabPackages": [],
"prefabPackageConfigurations": [],
"stlType": "c++_static",
"optimizationTag": "Debug"
},
"buildSettings": {
"environmentVariables": []
},
"prefabFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\prefab\\arm64-v8a",
"isActiveAbi": true,
"fullConfigurationHash": "1v7521f4itk2mce5y5kr2gh526u5m1u374z45y3i3d691a721np02h",
"fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.7.0.\n# - $NDK is the path to NDK 26.3.11579264.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-HC:/Flutter/flutter/packages/flutter_tools/gradle/src/main/groovy\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d21\n-DANDROID_PLATFORM\u003dandroid-21\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dI:/CSC190 Project/paperchase_app/build/app/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003dI:/CSC190 Project/paperchase_app/build/app/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-B$PROJECT/app/.cxx/Debug/$HASH/$ABI\n-GNinja\n-Wno-dev\n--no-warn-unused-cli",
"configurationArguments": [
"-HC:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy",
"-DCMAKE_SYSTEM_NAME\u003dAndroid",
"-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON",
"-DCMAKE_SYSTEM_VERSION\u003d21",
"-DANDROID_PLATFORM\u003dandroid-21",
"-DANDROID_ABI\u003darm64-v8a",
"-DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a",
"-DANDROID_NDK\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"-DCMAKE_ANDROID_NDK\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"-DCMAKE_TOOLCHAIN_FILE\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake",
"-DCMAKE_MAKE_PROGRAM\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe",
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dI:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\arm64-v8a",
"-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003dI:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\arm64-v8a",
"-DCMAKE_BUILD_TYPE\u003dDebug",
"-BI:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\arm64-v8a",
"-GNinja",
"-Wno-dev",
"--no-warn-unused-cli"
],
"intermediatesParentFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4"
}
\ No newline at end of file
@echo off
"C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\cmake.exe" ^
"-HC:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy" ^
"-DCMAKE_SYSTEM_NAME=Android" ^
"-DCMAKE_EXPORT_COMPILE_COMMANDS=ON" ^
"-DCMAKE_SYSTEM_VERSION=21" ^
"-DANDROID_PLATFORM=android-21" ^
"-DANDROID_ABI=arm64-v8a" ^
"-DCMAKE_ANDROID_ARCH_ABI=arm64-v8a" ^
"-DANDROID_NDK=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" ^
"-DCMAKE_ANDROID_NDK=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" ^
"-DCMAKE_TOOLCHAIN_FILE=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake" ^
"-DCMAKE_MAKE_PROGRAM=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe" ^
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\arm64-v8a" ^
"-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\arm64-v8a" ^
"-DCMAKE_BUILD_TYPE=Debug" ^
"-BI:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\arm64-v8a" ^
-GNinja ^
-Wno-dev ^
--no-warn-unused-cli
Not searching for unused variables given on the command line.
-- The C compiler identification is Clang 17.0.2
-- The CXX compiler identification is Clang 17.0.2
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Users/Patel/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Users/Patel/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: I:/CSC190 Project/paperchase_app/android/app/.cxx/Debug/1v7521f4/arm64-v8a
# C/C++ build system timings
generate_cxx_metadata
execute-generate-process
[gap of 417ms]
exec-configure 4059ms
[gap of 27ms]
execute-generate-process completed in 4503ms
[gap of 33ms]
generate_cxx_metadata completed in 4757ms
# C/C++ build system timings
generate_cxx_metadata
[gap of 276ms]
write-metadata-json-to-file 87ms
[gap of 158ms]
generate_cxx_metadata completed in 521ms
[
{
"level_": 0,
"message_": "Start JSON generation. Platform version: 21 min SDK version: arm64-v8a",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|arm64-v8a",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
},
{
"level_": 0,
"message_": "JSON \u0027I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\arm64-v8a\\android_gradle_build.json\u0027 was up-to-date",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|arm64-v8a",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
},
{
"level_": 0,
"message_": "JSON generation completed without problems",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|arm64-v8a",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
}
]
\ No newline at end of file
{
"info": {
"name": "armeabi-v7a",
"bitness": 32,
"isDefault": true,
"isDeprecated": false,
"architecture": "arm",
"triple": "arm-linux-androideabi",
"llvmTriple": "armv7-none-linux-androideabi"
},
"cxxBuildFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\armeabi-v7a",
"soFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\armeabi-v7a",
"soRepublishFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cmake\\profile\\obj\\armeabi-v7a",
"abiPlatformVersion": 21,
"cmake": {
"effectiveConfiguration": {
"inheritEnvironments": [],
"variables": []
}
},
"variant": {
"buildSystemArgumentList": [
"-Wno-dev",
"--no-warn-unused-cli"
],
"cFlagsList": [],
"cppFlagsList": [],
"variantName": "profile",
"isDebuggableEnabled": true,
"validAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"buildTargetSet": [],
"implicitBuildTargetSet": [],
"cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name",
"module": {
"cxxFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx",
"intermediatesBaseFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates",
"intermediatesFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx",
"gradleModulePathName": ":app",
"moduleRootFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app",
"moduleBuildFile": "I:\\CSC190 Project\\paperchase_app\\android\\app\\build.gradle.kts",
"makeFile": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"buildSystem": "CMAKE",
"ndkFolder": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"ndkFolderBeforeSymLinking": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"ndkVersion": "26.3.11579264",
"ndkSupportedAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"ndkDefaultAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"ndkDefaultStl": "LIBCXX_STATIC",
"ndkMetaPlatforms": {
"min": 21,
"max": 34,
"aliases": {
"20": 19,
"25": 24,
"J": 16,
"J-MR1": 17,
"J-MR2": 18,
"K": 19,
"L": 21,
"L-MR1": 22,
"M": 23,
"N": 24,
"N-MR1": 24,
"O": 26,
"O-MR1": 27,
"P": 28,
"Q": 29,
"R": 30,
"S": 31,
"Sv2": 32,
"Tiramisu": 33,
"UpsideDownCake": 34
}
},
"ndkMetaAbiList": [
{
"name": "armeabi-v7a",
"bitness": 32,
"isDefault": true,
"isDeprecated": false,
"architecture": "arm",
"triple": "arm-linux-androideabi",
"llvmTriple": "armv7-none-linux-androideabi"
},
{
"name": "arm64-v8a",
"bitness": 64,
"isDefault": true,
"isDeprecated": false,
"architecture": "arm64",
"triple": "aarch64-linux-android",
"llvmTriple": "aarch64-none-linux-android"
},
{
"name": "x86",
"bitness": 32,
"isDefault": true,
"isDeprecated": false,
"architecture": "x86",
"triple": "i686-linux-android",
"llvmTriple": "i686-none-linux-android"
},
{
"name": "x86_64",
"bitness": 64,
"isDefault": true,
"isDeprecated": false,
"architecture": "x86_64",
"triple": "x86_64-linux-android",
"llvmTriple": "x86_64-none-linux-android"
}
],
"cmakeToolchainFile": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake",
"cmake": {
"cmakeExe": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\cmake.exe"
},
"stlSharedObjectMap": {
"LIBCXX_SHARED": {
"armeabi-v7a": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\arm-linux-androideabi\\libc++_shared.so",
"arm64-v8a": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\aarch64-linux-android\\libc++_shared.so",
"x86": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\i686-linux-android\\libc++_shared.so",
"x86_64": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\x86_64-linux-android\\libc++_shared.so"
},
"LIBCXX_STATIC": {},
"NONE": {},
"SYSTEM": {}
},
"project": {
"rootBuildGradleFolder": "I:\\CSC190 Project\\paperchase_app\\android",
"sdkFolder": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk",
"isBuildOnlyTargetAbiEnabled": true,
"isCmakeBuildCohabitationEnabled": false,
"isPrefabEnabled": false
},
"outputOptions": [],
"ninjaExe": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe",
"hasBuildTimeInformation": true
},
"prefabClassPaths": [],
"prefabPackages": [],
"prefabPackageConfigurations": [],
"stlType": "c++_static",
"optimizationTag": "Debug"
},
"buildSettings": {
"environmentVariables": []
},
"prefabFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\prefab\\armeabi-v7a",
"isActiveAbi": true,
"fullConfigurationHash": "1v7521f4itk2mce5y5kr2gh526u5m1u374z45y3i3d691a721np02h",
"fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.7.0.\n# - $NDK is the path to NDK 26.3.11579264.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-HC:/Flutter/flutter/packages/flutter_tools/gradle/src/main/groovy\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d21\n-DANDROID_PLATFORM\u003dandroid-21\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dI:/CSC190 Project/paperchase_app/build/app/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003dI:/CSC190 Project/paperchase_app/build/app/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-B$PROJECT/app/.cxx/Debug/$HASH/$ABI\n-GNinja\n-Wno-dev\n--no-warn-unused-cli",
"configurationArguments": [
"-HC:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy",
"-DCMAKE_SYSTEM_NAME\u003dAndroid",
"-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON",
"-DCMAKE_SYSTEM_VERSION\u003d21",
"-DANDROID_PLATFORM\u003dandroid-21",
"-DANDROID_ABI\u003darmeabi-v7a",
"-DCMAKE_ANDROID_ARCH_ABI\u003darmeabi-v7a",
"-DANDROID_NDK\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"-DCMAKE_ANDROID_NDK\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"-DCMAKE_TOOLCHAIN_FILE\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake",
"-DCMAKE_MAKE_PROGRAM\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe",
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dI:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\armeabi-v7a",
"-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003dI:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\armeabi-v7a",
"-DCMAKE_BUILD_TYPE\u003dDebug",
"-BI:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\armeabi-v7a",
"-GNinja",
"-Wno-dev",
"--no-warn-unused-cli"
],
"intermediatesParentFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4"
}
\ No newline at end of file
@echo off
"C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\cmake.exe" ^
"-HC:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy" ^
"-DCMAKE_SYSTEM_NAME=Android" ^
"-DCMAKE_EXPORT_COMPILE_COMMANDS=ON" ^
"-DCMAKE_SYSTEM_VERSION=21" ^
"-DANDROID_PLATFORM=android-21" ^
"-DANDROID_ABI=armeabi-v7a" ^
"-DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a" ^
"-DANDROID_NDK=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" ^
"-DCMAKE_ANDROID_NDK=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" ^
"-DCMAKE_TOOLCHAIN_FILE=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake" ^
"-DCMAKE_MAKE_PROGRAM=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe" ^
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\armeabi-v7a" ^
"-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\armeabi-v7a" ^
"-DCMAKE_BUILD_TYPE=Debug" ^
"-BI:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\armeabi-v7a" ^
-GNinja ^
-Wno-dev ^
--no-warn-unused-cli
Not searching for unused variables given on the command line.
-- The C compiler identification is Clang 17.0.2
-- The CXX compiler identification is Clang 17.0.2
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Users/Patel/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Users/Patel/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: I:/CSC190 Project/paperchase_app/android/app/.cxx/Debug/1v7521f4/armeabi-v7a
# C/C++ build system timings
generate_cxx_metadata
execute-generate-process
[gap of 289ms]
exec-configure 2619ms
execute-generate-process completed in 2917ms
[gap of 17ms]
generate_cxx_metadata completed in 2972ms
[
{
"level_": 0,
"message_": "Start JSON generation. Platform version: 21 min SDK version: armeabi-v7a",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|armeabi-v7a",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
},
{
"level_": 0,
"message_": "JSON \u0027I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\armeabi-v7a\\android_gradle_build.json\u0027 was up-to-date",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|armeabi-v7a",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
},
{
"level_": 0,
"message_": "JSON generation completed without problems",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|armeabi-v7a",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
}
]
\ No newline at end of file
{
"info": {
"name": "x86",
"bitness": 32,
"isDefault": true,
"isDeprecated": false,
"architecture": "x86",
"triple": "i686-linux-android",
"llvmTriple": "i686-none-linux-android"
},
"cxxBuildFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\x86",
"soFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\x86",
"soRepublishFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cmake\\profile\\obj\\x86",
"abiPlatformVersion": 21,
"cmake": {
"effectiveConfiguration": {
"inheritEnvironments": [],
"variables": []
}
},
"variant": {
"buildSystemArgumentList": [
"-Wno-dev",
"--no-warn-unused-cli"
],
"cFlagsList": [],
"cppFlagsList": [],
"variantName": "profile",
"isDebuggableEnabled": true,
"validAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"buildTargetSet": [],
"implicitBuildTargetSet": [],
"cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name",
"module": {
"cxxFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx",
"intermediatesBaseFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates",
"intermediatesFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx",
"gradleModulePathName": ":app",
"moduleRootFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app",
"moduleBuildFile": "I:\\CSC190 Project\\paperchase_app\\android\\app\\build.gradle.kts",
"makeFile": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"buildSystem": "CMAKE",
"ndkFolder": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"ndkFolderBeforeSymLinking": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"ndkVersion": "26.3.11579264",
"ndkSupportedAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"ndkDefaultAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"ndkDefaultStl": "LIBCXX_STATIC",
"ndkMetaPlatforms": {
"min": 21,
"max": 34,
"aliases": {
"20": 19,
"25": 24,
"J": 16,
"J-MR1": 17,
"J-MR2": 18,
"K": 19,
"L": 21,
"L-MR1": 22,
"M": 23,
"N": 24,
"N-MR1": 24,
"O": 26,
"O-MR1": 27,
"P": 28,
"Q": 29,
"R": 30,
"S": 31,
"Sv2": 32,
"Tiramisu": 33,
"UpsideDownCake": 34
}
},
"ndkMetaAbiList": [
{
"name": "armeabi-v7a",
"bitness": 32,
"isDefault": true,
"isDeprecated": false,
"architecture": "arm",
"triple": "arm-linux-androideabi",
"llvmTriple": "armv7-none-linux-androideabi"
},
{
"name": "arm64-v8a",
"bitness": 64,
"isDefault": true,
"isDeprecated": false,
"architecture": "arm64",
"triple": "aarch64-linux-android",
"llvmTriple": "aarch64-none-linux-android"
},
{
"name": "x86",
"bitness": 32,
"isDefault": true,
"isDeprecated": false,
"architecture": "x86",
"triple": "i686-linux-android",
"llvmTriple": "i686-none-linux-android"
},
{
"name": "x86_64",
"bitness": 64,
"isDefault": true,
"isDeprecated": false,
"architecture": "x86_64",
"triple": "x86_64-linux-android",
"llvmTriple": "x86_64-none-linux-android"
}
],
"cmakeToolchainFile": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake",
"cmake": {
"cmakeExe": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\cmake.exe"
},
"stlSharedObjectMap": {
"LIBCXX_SHARED": {
"armeabi-v7a": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\arm-linux-androideabi\\libc++_shared.so",
"arm64-v8a": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\aarch64-linux-android\\libc++_shared.so",
"x86": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\i686-linux-android\\libc++_shared.so",
"x86_64": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\x86_64-linux-android\\libc++_shared.so"
},
"LIBCXX_STATIC": {},
"NONE": {},
"SYSTEM": {}
},
"project": {
"rootBuildGradleFolder": "I:\\CSC190 Project\\paperchase_app\\android",
"sdkFolder": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk",
"isBuildOnlyTargetAbiEnabled": true,
"isCmakeBuildCohabitationEnabled": false,
"isPrefabEnabled": false
},
"outputOptions": [],
"ninjaExe": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe",
"hasBuildTimeInformation": true
},
"prefabClassPaths": [],
"prefabPackages": [],
"prefabPackageConfigurations": [],
"stlType": "c++_static",
"optimizationTag": "Debug"
},
"buildSettings": {
"environmentVariables": []
},
"prefabFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\prefab\\x86",
"isActiveAbi": true,
"fullConfigurationHash": "1v7521f4itk2mce5y5kr2gh526u5m1u374z45y3i3d691a721np02h",
"fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.7.0.\n# - $NDK is the path to NDK 26.3.11579264.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-HC:/Flutter/flutter/packages/flutter_tools/gradle/src/main/groovy\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d21\n-DANDROID_PLATFORM\u003dandroid-21\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dI:/CSC190 Project/paperchase_app/build/app/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003dI:/CSC190 Project/paperchase_app/build/app/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-B$PROJECT/app/.cxx/Debug/$HASH/$ABI\n-GNinja\n-Wno-dev\n--no-warn-unused-cli",
"configurationArguments": [
"-HC:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy",
"-DCMAKE_SYSTEM_NAME\u003dAndroid",
"-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON",
"-DCMAKE_SYSTEM_VERSION\u003d21",
"-DANDROID_PLATFORM\u003dandroid-21",
"-DANDROID_ABI\u003dx86",
"-DCMAKE_ANDROID_ARCH_ABI\u003dx86",
"-DANDROID_NDK\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"-DCMAKE_ANDROID_NDK\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"-DCMAKE_TOOLCHAIN_FILE\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake",
"-DCMAKE_MAKE_PROGRAM\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe",
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dI:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\x86",
"-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003dI:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\x86",
"-DCMAKE_BUILD_TYPE\u003dDebug",
"-BI:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\x86",
"-GNinja",
"-Wno-dev",
"--no-warn-unused-cli"
],
"intermediatesParentFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4"
}
\ No newline at end of file
@echo off
"C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\cmake.exe" ^
"-HC:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy" ^
"-DCMAKE_SYSTEM_NAME=Android" ^
"-DCMAKE_EXPORT_COMPILE_COMMANDS=ON" ^
"-DCMAKE_SYSTEM_VERSION=21" ^
"-DANDROID_PLATFORM=android-21" ^
"-DANDROID_ABI=x86" ^
"-DCMAKE_ANDROID_ARCH_ABI=x86" ^
"-DANDROID_NDK=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" ^
"-DCMAKE_ANDROID_NDK=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" ^
"-DCMAKE_TOOLCHAIN_FILE=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake" ^
"-DCMAKE_MAKE_PROGRAM=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe" ^
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\x86" ^
"-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\x86" ^
"-DCMAKE_BUILD_TYPE=Debug" ^
"-BI:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\x86" ^
-GNinja ^
-Wno-dev ^
--no-warn-unused-cli
Not searching for unused variables given on the command line.
-- The C compiler identification is Clang 17.0.2
-- The CXX compiler identification is Clang 17.0.2
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Users/Patel/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Users/Patel/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: I:/CSC190 Project/paperchase_app/android/app/.cxx/Debug/1v7521f4/x86
# C/C++ build system timings
generate_cxx_metadata
execute-generate-process
[gap of 144ms]
exec-configure 2398ms
execute-generate-process completed in 2549ms
[gap of 15ms]
generate_cxx_metadata completed in 2619ms
[
{
"level_": 0,
"message_": "Start JSON generation. Platform version: 21 min SDK version: x86",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|x86",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
},
{
"level_": 0,
"message_": "JSON \u0027I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\x86\\android_gradle_build.json\u0027 was up-to-date",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|x86",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
},
{
"level_": 0,
"message_": "JSON generation completed without problems",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|x86",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
}
]
\ No newline at end of file
{
"info": {
"name": "x86_64",
"bitness": 64,
"isDefault": true,
"isDeprecated": false,
"architecture": "x86_64",
"triple": "x86_64-linux-android",
"llvmTriple": "x86_64-none-linux-android"
},
"cxxBuildFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\x86_64",
"soFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\x86_64",
"soRepublishFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cmake\\profile\\obj\\x86_64",
"abiPlatformVersion": 21,
"cmake": {
"effectiveConfiguration": {
"inheritEnvironments": [],
"variables": []
}
},
"variant": {
"buildSystemArgumentList": [
"-Wno-dev",
"--no-warn-unused-cli"
],
"cFlagsList": [],
"cppFlagsList": [],
"variantName": "profile",
"isDebuggableEnabled": true,
"validAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"buildTargetSet": [],
"implicitBuildTargetSet": [],
"cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name",
"module": {
"cxxFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx",
"intermediatesBaseFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates",
"intermediatesFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx",
"gradleModulePathName": ":app",
"moduleRootFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app",
"moduleBuildFile": "I:\\CSC190 Project\\paperchase_app\\android\\app\\build.gradle.kts",
"makeFile": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"buildSystem": "CMAKE",
"ndkFolder": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"ndkFolderBeforeSymLinking": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"ndkVersion": "26.3.11579264",
"ndkSupportedAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"ndkDefaultAbiList": [
"armeabi-v7a",
"arm64-v8a",
"x86",
"x86_64"
],
"ndkDefaultStl": "LIBCXX_STATIC",
"ndkMetaPlatforms": {
"min": 21,
"max": 34,
"aliases": {
"20": 19,
"25": 24,
"J": 16,
"J-MR1": 17,
"J-MR2": 18,
"K": 19,
"L": 21,
"L-MR1": 22,
"M": 23,
"N": 24,
"N-MR1": 24,
"O": 26,
"O-MR1": 27,
"P": 28,
"Q": 29,
"R": 30,
"S": 31,
"Sv2": 32,
"Tiramisu": 33,
"UpsideDownCake": 34
}
},
"ndkMetaAbiList": [
{
"name": "armeabi-v7a",
"bitness": 32,
"isDefault": true,
"isDeprecated": false,
"architecture": "arm",
"triple": "arm-linux-androideabi",
"llvmTriple": "armv7-none-linux-androideabi"
},
{
"name": "arm64-v8a",
"bitness": 64,
"isDefault": true,
"isDeprecated": false,
"architecture": "arm64",
"triple": "aarch64-linux-android",
"llvmTriple": "aarch64-none-linux-android"
},
{
"name": "x86",
"bitness": 32,
"isDefault": true,
"isDeprecated": false,
"architecture": "x86",
"triple": "i686-linux-android",
"llvmTriple": "i686-none-linux-android"
},
{
"name": "x86_64",
"bitness": 64,
"isDefault": true,
"isDeprecated": false,
"architecture": "x86_64",
"triple": "x86_64-linux-android",
"llvmTriple": "x86_64-none-linux-android"
}
],
"cmakeToolchainFile": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake",
"cmake": {
"cmakeExe": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\cmake.exe"
},
"stlSharedObjectMap": {
"LIBCXX_SHARED": {
"armeabi-v7a": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\arm-linux-androideabi\\libc++_shared.so",
"arm64-v8a": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\aarch64-linux-android\\libc++_shared.so",
"x86": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\i686-linux-android\\libc++_shared.so",
"x86_64": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\x86_64-linux-android\\libc++_shared.so"
},
"LIBCXX_STATIC": {},
"NONE": {},
"SYSTEM": {}
},
"project": {
"rootBuildGradleFolder": "I:\\CSC190 Project\\paperchase_app\\android",
"sdkFolder": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk",
"isBuildOnlyTargetAbiEnabled": true,
"isCmakeBuildCohabitationEnabled": false,
"isPrefabEnabled": false
},
"outputOptions": [],
"ninjaExe": "C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe",
"hasBuildTimeInformation": true
},
"prefabClassPaths": [],
"prefabPackages": [],
"prefabPackageConfigurations": [],
"stlType": "c++_static",
"optimizationTag": "Debug"
},
"buildSettings": {
"environmentVariables": []
},
"prefabFolder": "I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\prefab\\x86_64",
"isActiveAbi": true,
"fullConfigurationHash": "1v7521f4itk2mce5y5kr2gh526u5m1u374z45y3i3d691a721np02h",
"fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.7.0.\n# - $NDK is the path to NDK 26.3.11579264.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-HC:/Flutter/flutter/packages/flutter_tools/gradle/src/main/groovy\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d21\n-DANDROID_PLATFORM\u003dandroid-21\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dI:/CSC190 Project/paperchase_app/build/app/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003dI:/CSC190 Project/paperchase_app/build/app/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-B$PROJECT/app/.cxx/Debug/$HASH/$ABI\n-GNinja\n-Wno-dev\n--no-warn-unused-cli",
"configurationArguments": [
"-HC:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy",
"-DCMAKE_SYSTEM_NAME\u003dAndroid",
"-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON",
"-DCMAKE_SYSTEM_VERSION\u003d21",
"-DANDROID_PLATFORM\u003dandroid-21",
"-DANDROID_ABI\u003dx86_64",
"-DCMAKE_ANDROID_ARCH_ABI\u003dx86_64",
"-DANDROID_NDK\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"-DCMAKE_ANDROID_NDK\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264",
"-DCMAKE_TOOLCHAIN_FILE\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake",
"-DCMAKE_MAKE_PROGRAM\u003dC:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe",
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dI:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\x86_64",
"-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003dI:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\x86_64",
"-DCMAKE_BUILD_TYPE\u003dDebug",
"-BI:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\x86_64",
"-GNinja",
"-Wno-dev",
"--no-warn-unused-cli"
],
"intermediatesParentFolder": "I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4"
}
\ No newline at end of file
@echo off
"C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\cmake.exe" ^
"-HC:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy" ^
"-DCMAKE_SYSTEM_NAME=Android" ^
"-DCMAKE_EXPORT_COMPILE_COMMANDS=ON" ^
"-DCMAKE_SYSTEM_VERSION=21" ^
"-DANDROID_PLATFORM=android-21" ^
"-DANDROID_ABI=x86_64" ^
"-DCMAKE_ANDROID_ARCH_ABI=x86_64" ^
"-DANDROID_NDK=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" ^
"-DCMAKE_ANDROID_NDK=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" ^
"-DCMAKE_TOOLCHAIN_FILE=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264\\build\\cmake\\android.toolchain.cmake" ^
"-DCMAKE_MAKE_PROGRAM=C:\\Users\\Patel\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe" ^
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\x86_64" ^
"-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=I:\\CSC190 Project\\paperchase_app\\build\\app\\intermediates\\cxx\\Debug\\1v7521f4\\obj\\x86_64" ^
"-DCMAKE_BUILD_TYPE=Debug" ^
"-BI:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\x86_64" ^
-GNinja ^
-Wno-dev ^
--no-warn-unused-cli
Not searching for unused variables given on the command line.
-- The C compiler identification is Clang 17.0.2
-- The CXX compiler identification is Clang 17.0.2
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Users/Patel/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Users/Patel/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: I:/CSC190 Project/paperchase_app/android/app/.cxx/Debug/1v7521f4/x86_64
# C/C++ build system timings
generate_cxx_metadata
execute-generate-process
[gap of 247ms]
exec-configure 2249ms
execute-generate-process completed in 2504ms
[gap of 17ms]
generate_cxx_metadata completed in 2617ms
[
{
"level_": 0,
"message_": "Start JSON generation. Platform version: 21 min SDK version: x86_64",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|x86_64",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
},
{
"level_": 0,
"message_": "JSON \u0027I:\\CSC190 Project\\paperchase_app\\android\\app\\.cxx\\Debug\\1v7521f4\\x86_64\\android_gradle_build.json\u0027 was up-to-date",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|x86_64",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
},
{
"level_": 0,
"message_": "JSON generation completed without problems",
"file_": "C:\\Flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt",
"tag_": "profile|x86_64",
"diagnosticCode_": 0,
"memoizedIsInitialized": 1,
"unknownFields": {
"fields": {}
},
"memoizedSize": -1,
"memoizedHashCode": 0
}
]
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment