Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions MAINTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

_This file is auto-generated from the repository collaborators list._

| Name | GitHub Handle | Role |
|---------------|------------------|------------------|
| Sri Varshith | [@Sri-Varshith](https://github.com/Sri-Varshith) | Lead Maintainer |
| Name | GitHub Handle | Role | Tenure | Time Period |
|---------------|------------------|------------------|---|---|
| Sri Varshith | [@Sri-Varshith](https://github.com/Sri-Varshith) | Mentor (Sprint-M25) | 2025-26 | August 2025 - Present |
| Sarvesh | [@Sarvesh2459](https://github.com/Sarvesh2459) | Maintainer | 2022-23 | December 2022 - February 2023 |
| Ayush | [@Ayushk249](https://github.com/Ayushk249) | Maintainer | 2022-23 | December 2022 - February 2023 |
| Gopal | [@Gopal-Dahale](https://github.com/Gopal-Dahale) | Maintainer | 2021-22 | December 2021 - March 2022 |
34 changes: 17 additions & 17 deletions flutter/quizlake/.metadata
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled.
# This file should be version controlled and should not be manually edited.

version:
revision: 20a78ed69f45502344010aedff4d915db27072b2
channel: master
revision: "ac4e799d237041cf905519190471f657b657155a"
channel: "stable"

project_type: app

# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 20a78ed69f45502344010aedff4d915db27072b2
base_revision: 20a78ed69f45502344010aedff4d915db27072b2
create_revision: ac4e799d237041cf905519190471f657b657155a
base_revision: ac4e799d237041cf905519190471f657b657155a
- platform: android
create_revision: 20a78ed69f45502344010aedff4d915db27072b2
base_revision: 20a78ed69f45502344010aedff4d915db27072b2
create_revision: ac4e799d237041cf905519190471f657b657155a
base_revision: ac4e799d237041cf905519190471f657b657155a
- platform: ios
create_revision: 20a78ed69f45502344010aedff4d915db27072b2
base_revision: 20a78ed69f45502344010aedff4d915db27072b2
create_revision: ac4e799d237041cf905519190471f657b657155a
base_revision: ac4e799d237041cf905519190471f657b657155a
- platform: linux
create_revision: 20a78ed69f45502344010aedff4d915db27072b2
base_revision: 20a78ed69f45502344010aedff4d915db27072b2
create_revision: ac4e799d237041cf905519190471f657b657155a
base_revision: ac4e799d237041cf905519190471f657b657155a
- platform: macos
create_revision: 20a78ed69f45502344010aedff4d915db27072b2
base_revision: 20a78ed69f45502344010aedff4d915db27072b2
create_revision: ac4e799d237041cf905519190471f657b657155a
base_revision: ac4e799d237041cf905519190471f657b657155a
- platform: web
create_revision: 20a78ed69f45502344010aedff4d915db27072b2
base_revision: 20a78ed69f45502344010aedff4d915db27072b2
create_revision: ac4e799d237041cf905519190471f657b657155a
base_revision: ac4e799d237041cf905519190471f657b657155a
- platform: windows
create_revision: 20a78ed69f45502344010aedff4d915db27072b2
base_revision: 20a78ed69f45502344010aedff4d915db27072b2
create_revision: ac4e799d237041cf905519190471f657b657155a
base_revision: ac4e799d237041cf905519190471f657b657155a

# User provided section

Expand Down
3 changes: 2 additions & 1 deletion flutter/quizlake/android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ gradle-wrapper.jar
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
.cxx/

# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
# See https://flutter.dev/to/reference-keystore
key.properties
**/*.keystore
**/*.jks
74 changes: 0 additions & 74 deletions flutter/quizlake/android/app/build.gradle

This file was deleted.

44 changes: 44 additions & 0 deletions flutter/quizlake/android/app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
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.quizlake"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion

compileOptions {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_21.toString()
}

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.quizlake"
// 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 = "../.."
}
47 changes: 0 additions & 47 deletions flutter/quizlake/android/app/google-services.json

This file was deleted.

3 changes: 1 addition & 2 deletions flutter/quizlake/android/app/src/debug/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.quizlake">
<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.
Expand Down
18 changes: 14 additions & 4 deletions flutter/quizlake/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.quizlake">
<uses-permission android:name= "android.permission.INTERNET"/>
<application
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="quizlake"
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"
Expand All @@ -32,4 +31,15 @@
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>
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ package com.example.quizlake

import io.flutter.embedding.android.FlutterActivity

class MainActivity: FlutterActivity() {
}
class MainActivity : FlutterActivity()
3 changes: 1 addition & 2 deletions flutter/quizlake/android/app/src/profile/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.quizlake">
<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.
Expand Down
32 changes: 0 additions & 32 deletions flutter/quizlake/android/build.gradle

This file was deleted.

24 changes: 24 additions & 0 deletions flutter/quizlake/android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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)
}
2 changes: 1 addition & 1 deletion flutter/quizlake/android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
org.gradle.jvmargs=-Xmx1536M
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true
android.enableJetifier=true
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
11 changes: 0 additions & 11 deletions flutter/quizlake/android/settings.gradle

This file was deleted.

Loading