Skip to content

Commit 98d93d3

Browse files
author
Wilberforce Uwadiegwu
authored
Merge pull request wilburx9#147 from wilburt/v1.0.7
V1.0.7
2 parents 65d7ca6 + 10c5e84 commit 98d93d3

File tree

16 files changed

+143
-553
lines changed

16 files changed

+143
-553
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Build and Test
22

3-
on: [push]
3+
on:
4+
pull_request:
5+
branches:
6+
- 'master'
7+
48
jobs:
59
build-and-test:
610
name: build-and-test

.gitignore

Lines changed: 125 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,130 @@
1+
# Miscellaneous
2+
*.class
3+
*.lock
4+
*.log
5+
*.pyc
6+
*.swp
17
.DS_Store
2-
.dart_tool/
8+
.atom/
9+
.buildlog/
10+
.history
11+
.svn/
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# Visual Studio Code related
20+
.classpath
21+
.project
22+
.settings/
23+
.vscode/
24+
25+
# Flutter repo-specific
26+
/bin/cache/
27+
/bin/internal/bootstrap.bat
28+
/bin/internal/bootstrap.sh
29+
/bin/mingit/
30+
/dev/benchmarks/mega_gallery/
31+
/dev/bots/.recipe_deps
32+
/dev/bots/android_tools/
33+
/dev/devicelab/ABresults*.json
34+
/dev/docs/doc/
35+
/dev/docs/flutter.docs.zip
36+
/dev/docs/lib/
37+
/dev/docs/pubspec.yaml
38+
/dev/integration_tests/**/xcuserdata
39+
/dev/integration_tests/**/Pods
40+
/packages/flutter/coverage/
41+
version
42+
analysis_benchmark.json
343

44+
# packages file containing multi-root paths
45+
.packages.generated
46+
47+
# Flutter/Dart/Pub related
48+
**/doc/api/
49+
.dart_tool/
50+
.flutter-plugins
51+
.flutter-plugins-dependencies
52+
**/generated_plugin_registrant.dart
453
.packages
54+
.pub-cache/
555
.pub/
6-
pubspec.lock
7-
856
build/
9-
.idea
10-
.gradle
11-
*.iml
12-
/example/ios/Podfile.lock
13-
/coverage/
57+
flutter_*.png
58+
linked_*.ds
59+
unlinked.ds
60+
unlinked_spec.ds
61+
62+
# Android related
63+
**/android/**/gradle-wrapper.jar
64+
.gradle/
65+
**/android/captures/
66+
**/android/gradlew
67+
**/android/gradlew.bat
68+
**/android/local.properties
69+
**/android/**/GeneratedPluginRegistrant.java
70+
**/android/key.properties
71+
*.jks
72+
73+
# iOS/XCode related
74+
**/ios/**/*.mode1v3
75+
**/ios/**/*.mode2v3
76+
**/ios/**/*.moved-aside
77+
**/ios/**/*.pbxuser
78+
**/ios/**/*.perspectivev3
79+
**/ios/**/*sync/
80+
**/ios/**/.sconsign.dblite
81+
**/ios/**/.tags*
82+
**/ios/**/.vagrant/
83+
**/ios/**/DerivedData/
84+
**/ios/**/Icon?
85+
**/ios/**/Pods/
86+
**/ios/**/.symlinks/
87+
**/ios/**/profile
88+
**/ios/**/xcuserdata
89+
**/ios/.generated/
90+
**/ios/Flutter/.last_build_id
91+
**/ios/Flutter/App.framework
92+
**/ios/Flutter/Flutter.framework
93+
**/ios/Flutter/Flutter.podspec
94+
**/ios/Flutter/Generated.xcconfig
95+
**/ios/Flutter/ephemeral
96+
**/ios/Flutter/app.flx
97+
**/ios/Flutter/app.zip
98+
**/ios/Flutter/flutter_assets/
99+
**/ios/Flutter/flutter_export_environment.sh
100+
**/ios/ServiceDefinitions.json
101+
**/ios/Runner/GeneratedPluginRegistrant.*
102+
103+
# macOS
104+
**/Flutter/ephemeral/
105+
**/Pods/
106+
**/macos/Flutter/GeneratedPluginRegistrant.swift
107+
**/macos/Flutter/ephemeral
108+
**/xcuserdata/
109+
110+
# Windows
111+
**/windows/flutter/generated_plugin_registrant.cc
112+
**/windows/flutter/generated_plugin_registrant.h
113+
114+
# Linux
115+
**/linux/flutter/generated_plugin_registrant.cc
116+
**/linux/flutter/generated_plugin_registrant.h
117+
118+
# Coverage
119+
coverage/
120+
121+
# Symbols
122+
app.*.symbols
123+
124+
# Exceptions to above rules.
125+
!**/ios/**/default.mode1v3
126+
!**/ios/**/default.mode2v3
127+
!**/ios/**/default.pbxuser
128+
!**/ios/**/default.perspectivev3
129+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
130+
!/dev/ci/**/Gemfile.lock

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.7
2+
* Fixed an issue where only one bank showed-up in the banks dropdown
3+
* Fixed build issues caused by androidx material library
4+
* Fixed build issues caused by using the wrong android `compileSdkVersion`
5+
16
## 1.0.6
27
* Completed migration for Android v2 embedding.
38
* Fixed colour issues in dark mode

android/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ group 'co.paystack.flutterpaystack'
22
version '1.0-SNAPSHOT'
33

44
buildscript {
5-
ext.kotlin_version = '1.7.10'
5+
ext.kotlin_version = '1.7.20'
66
repositories {
77
mavenCentral()
88
google()
99
}
1010

1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:4.1.3'
12+
classpath 'com.android.tools.build:gradle:7.4.0-rc02'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414
}
1515
}
@@ -25,7 +25,7 @@ apply plugin: 'com.android.library'
2525
apply plugin: 'kotlin-android'
2626

2727
android {
28-
compileSdkVersion 28
28+
compileSdkVersion 32
2929

3030
sourceSets {
3131
main.java.srcDirs += 'src/main/kotlin'
@@ -42,5 +42,5 @@ android {
4242
}
4343

4444
dependencies {
45-
implementation 'com.google.android.material:material:1.8.0-alpha01'
45+
implementation 'com.google.android.material:material:1.7.0'
4646
}
-53.1 KB
Binary file not shown.

android/gradlew

Lines changed: 0 additions & 172 deletions
This file was deleted.

0 commit comments

Comments
 (0)