File tree Expand file tree Collapse file tree
samples/admob/rewarded_example
kotlin/com/example/rewarded_example Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ migrate_working_dir/
2727** /doc /api /
2828** /ios /Flutter /.last_build_id
2929.dart_tool /
30- .flutter-plugins
3130.flutter-plugins-dependencies
3231.pub-cache /
3332.pub /
3433/build /
34+ /coverage /
3535
3636# Symbolication related
3737app. * .symbols
Original file line number Diff line number Diff line change 44# This file should be version controlled and should not be manually edited.
55
66version:
7- revision: "db7ef5bf9f59442b0e200a90587e8fa5e0c6336a "
7+ revision: "a402d9a4376add5bc2d6b1e33e53edaae58c07f8 "
88 channel: "stable"
99
1010project_type: app
@@ -13,14 +13,11 @@ project_type: app
1313migration:
1414 platforms:
1515 - platform: root
16- create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
17- base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
16+ create_revision: a402d9a4376add5bc2d6b1e33e53edaae58c07f8
17+ base_revision: a402d9a4376add5bc2d6b1e33e53edaae58c07f8
1818 - platform: android
19- create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
20- base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
21- - platform: ios
22- create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
23- base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
19+ create_revision: a402d9a4376add5bc2d6b1e33e53edaae58c07f8
20+ base_revision: a402d9a4376add5bc2d6b1e33e53edaae58c07f8
2421
2522 # User provided section
2623
Original file line number Diff line number Diff line change @@ -5,9 +5,10 @@ gradle-wrapper.jar
55/gradlew.bat
66/local.properties
77GeneratedPluginRegistrant.java
8+ .cxx /
89
910# Remember to never publicly share your keystore.
10- # See https://flutter.dev/docs/deployment/android# reference-the- keystore-from-the-app
11+ # See https://flutter.dev/to/ reference-keystore
1112key.properties
1213** /* .keystore
1314** /* .jks
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ plugins {
2+ id(" com.android.application" )
3+ id(" kotlin-android" )
4+ // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
5+ id(" dev.flutter.flutter-gradle-plugin" )
6+ }
7+
8+ android {
9+ namespace = " com.example.rewarded_example"
10+ compileSdk = flutter.compileSdkVersion
11+ ndkVersion = flutter.ndkVersion
12+
13+ compileOptions {
14+ sourceCompatibility = JavaVersion .VERSION_11
15+ targetCompatibility = JavaVersion .VERSION_11
16+ }
17+
18+ kotlinOptions {
19+ jvmTarget = JavaVersion .VERSION_11 .toString()
20+ }
21+
22+ defaultConfig {
23+ // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24+ applicationId = " com.example.rewarded_example"
25+ // You can update the following values to match your application needs.
26+ // For more information, see: https://flutter.dev/to/review-gradle-config.
27+ minSdk = flutter.minSdkVersion
28+ targetSdk = flutter.targetSdkVersion
29+ versionCode = flutter.versionCode
30+ versionName = flutter.versionName
31+ }
32+
33+ buildTypes {
34+ release {
35+ // TODO: Add your own signing config for the release build.
36+ // Signing with the debug keys for now, so `flutter run --release` works.
37+ signingConfig = signingConfigs.getByName(" debug" )
38+ }
39+ }
40+ }
41+
42+ flutter {
43+ source = " ../.."
44+ }
Original file line number Diff line number Diff line change 77 android : name =" .MainActivity"
88 android : exported =" true"
99 android : launchMode =" singleTop"
10+ android : taskAffinity =" "
1011 android : theme =" @style/LaunchTheme"
1112 android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
1213 android : hardwareAccelerated =" true"
3334 android : name =" com.google.android.gms.ads.APPLICATION_ID"
3435 android : value =" ca-app-pub-3940256099942544~3347511713" />
3536 </application >
37+ <!-- Required to query activities that can process text, see:
38+ https://developer.android.com/training/package-visibility and
39+ https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
40+
41+ In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
42+ <queries >
43+ <intent >
44+ <action android : name =" android.intent.action.PROCESS_TEXT" />
45+ <data android : mimeType =" text/plain" />
46+ </intent >
47+ </queries >
3648</manifest >
Original file line number Diff line number Diff line change @@ -2,5 +2,4 @@ package com.example.rewarded_example
22
33import io.flutter.embedding.android.FlutterActivity
44
5- class MainActivity : FlutterActivity () {
6- }
5+ class MainActivity : FlutterActivity ()
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ allprojects {
2+ repositories {
3+ google()
4+ mavenCentral()
5+ }
6+ }
7+
8+ val newBuildDir: Directory =
9+ rootProject.layout.buildDirectory
10+ .dir(" ../../build" )
11+ .get()
12+ rootProject.layout.buildDirectory.value(newBuildDir)
13+
14+ subprojects {
15+ val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
16+ project.layout.buildDirectory.value(newSubprojectBuildDir)
17+ }
18+ subprojects {
19+ project.evaluationDependsOn(" :app" )
20+ }
21+
22+ tasks.register<Delete >(" clean" ) {
23+ delete(rootProject.layout.buildDirectory)
24+ }
Original file line number Diff line number Diff line change 1- org.gradle.jvmargs =-Xmx4G
1+ org.gradle.jvmargs =-Xmx8G -XX: MaxMetaspaceSize =4G -XX: ReservedCodeCacheSize =512m -XX:+HeapDumpOnOutOfMemoryError
22android.useAndroidX =true
33android.enableJetifier =true
You can’t perform that action at this time.
0 commit comments