Skip to content

Commit

Permalink
feat: added apk
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioEstevao11 committed May 10, 2022
1 parent e52ebb1 commit ab8757e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,7 @@ lib/generated_plugin_registrant.dart


#Tests
test_report.json
test_report.json

#key.properties
/android/key.properties
Binary file added src/.gradle/4.4.1/fileChanges/last-build.bin
Binary file not shown.
Binary file added src/.gradle/4.4.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file added src/.gradle/4.4.1/taskHistory/taskHistory.bin
Binary file not shown.
Binary file added src/.gradle/4.4.1/taskHistory/taskHistory.lock
Binary file not shown.
Binary file not shown.
2 changes: 2 additions & 0 deletions src/.gradle/buildOutputCleanup/cache.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Tue May 10 10:08:07 WEST 2022
gradle.version=4.4.1
4 changes: 2 additions & 2 deletions src/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if (localPropertiesFile.exists()) {

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
throw new FileNotFoundException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
Expand All @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
def keystorePropertiesFile = rootProject.file('app/key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
Expand Down

0 comments on commit ab8757e

Please sign in to comment.