Skip to content

Commit

Permalink
Merge pull request #6 from doablespace/android-sdk
Browse files Browse the repository at this point in the history
Bump target Android SDK version
  • Loading branch information
jjonescz committed Aug 19, 2023
2 parents 52d5147 + 3821ef2 commit 92ed2a8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ RUN curl -o flutter.tar.xz $FLUTTER_URL \
&& mkdir -p $FLUTTER_HOME \
&& tar xf flutter.tar.xz -C $HOME \
&& rm flutter.tar.xz \
&& git config --global --add safe.directory $FLUTTER_HOME \
&& flutter config --no-analytics \
&& flutter precache \
&& yes "y" | flutter doctor --android-licenses \
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ android {
defaultConfig {
applicationId "com.knowledgepicker.ididit"
minSdkVersion 16
targetSdkVersion 30
targetSdkVersion 31
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
Expand Down
3 changes: 3 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ set -e
# HACK: Patch Flutter (allows transparent dismissible widget).
(cd $FLUTTER_HOME && git apply $OLDPWD/flutter.patch)

# Make Git trust the workspace directory.
git config --global --add safe.directory $PWD

# Restore Ruby dependencies (Fastlane).
bundle install

Expand Down

0 comments on commit 92ed2a8

Please sign in to comment.