Skip to content

Commit

Permalink
Fix sksl incompatability by disabling it
Browse files Browse the repository at this point in the history
  • Loading branch information
joecks committed Jul 19, 2022
1 parent 88ef155 commit 37f4fde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion application/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ private_lane :build_with_flutter do |options|
flavor = options[Options::FLAVOR]
appName = Config::FLAVOR_MATRIX[flavor][platform][Keys::NAME]
appId = Config::FLAVOR_MATRIX[flavor][platform][Keys::ID]
shaders = platform == Platforms::IOS ? %W(--bundle-sksl-path flutter_01.sksl.json) : []
# TODO detect if the sksl is out of date
shaders = [] # platform == Platforms::IOS ? %W(--bundle-sksl-path flutter_01.sksl.json) : []

defines = {
"GIT_TAG" => options[Options::VERSION_NAME],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class _AdCardState extends State<AdCard> {

void loadAd() => startAppSdk
.loadNativeAd(
prefs: StartAppAdPreferences(
prefs: const StartAppAdPreferences(
// somehow this is ignored
// desiredWidth: R.dimen.screenSize.width.floor(),
// desiredHeight: R.dimen.screenSize.height.floor(),
Expand Down

0 comments on commit 37f4fde

Please sign in to comment.