Skip to content

Commit

Permalink
Merge pull request #102 from VictorKabata/update-libs
Browse files Browse the repository at this point in the history
Clean up
  • Loading branch information
VictorKabata authored Jan 4, 2024
2 parents 499bd49 + 08b78b2 commit ee60e33
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 2 deletions.
25 changes: 25 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
### Description
<!-- Describe the purpose and changes introduced by this pull request. -->

### Issue
<!-- Link to the related issue(s) if applicable. -->

### Changes Made
<!-- List the main changes made in this pull request. -->

### Screenshots / GIFs
<!-- Add any relevant screenshots or GIFs showcasing the changes (if applicable). -->

### Checklist
<!-- Mark the completed items with [x] and provide any additional comments when necessary. -->
- [] I have run the gradle command: `./gradlew clean build`
- [] I have added or updated relevant tests.
- [] I have updated the documentation. <!--(if applicable)-->
- [] I have ensured code style consistency by running the gradle command: `./gradlew :daraja:ktlintCheck :daraja:detekt` .
- [] I have addressed any potential compatibility issues.
- [] I have considered backward compatibility. <!--(if applicable)-->

### Additional Notes
<!-- Add any other relevant information or notes that may be helpful for the code review. -->

<!-- Feel free to add any additional sections that may be specific to your project. -->
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ fun HomeScreen() {
}

fun initiateMpesaStk(daraja: Daraja, tillNumber: String, amount: Int, phoneNumber: String) {
daraja.initiateMpesaExpressPayment(
daraja.mpesaExpress(
businessShortCode = tillNumber,
amount = amount,
phoneNumber = phoneNumber,
Expand Down
2 changes: 1 addition & 1 deletion daraja/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ tasks.withType<DependencyUpdatesTask> {
gradleReleaseChannel = "current"

outputFormatter = "html"
outputDir = "${project.rootDir}/build/reports"
outputDir = "${project.rootDir}/daraja/build/reports"
reportfileName = "dependencies_report"
}

Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ kotlin.code.style=official
#Android
android.useAndroidX=true
android.nonTransitiveRClass=true
android.disableAutomaticComponentCreation=true

#MPP
kotlin.mpp.enableCInteropCommonization=true
Expand Down

0 comments on commit ee60e33

Please sign in to comment.