Skip to content

Commit

Permalink
Fixed printer
Browse files Browse the repository at this point in the history
  • Loading branch information
ldavidsp committed Sep 23, 2023
1 parent a9d9c4e commit afd5c09
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ plugins {
}

android {
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "com.homeflow.invoices.app"
minSdk 23
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class MainActivity : AppCompatActivity() {
printable.add(TextPrintable.Builder().setCenter("Jose David Solorzano").setNewLine())


HomeflowPrinter(this@MainActivity, printable).printPreviewLog()
HomeflowPrinter(this@MainActivity, printable).printBluetooth()
}

printerPermission()
Expand Down
10 changes: 5 additions & 5 deletions printer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ plugins {
id 'maven-publish'
}

def libraryVersionCode = 206
def libraryVersionName = "2.0.6"
def libraryVersionCode = 208
def libraryVersionName = "2.0.8"

android {
compileSdk 33
compileSdk 34

defaultConfig {
minSdk 23
targetSdk 33
targetSdk 34
versionCode libraryVersionCode
versionName libraryVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand All @@ -35,7 +35,7 @@ android {
}

dependencies {
implementation('com.github.DantSu:ESCPOS-ThermalPrinter-Android:3.3.0')
implementation('com.github.ldavidsp:ESCPOS-ThermalPrinter-Android:3.3.2')
}

afterEvaluate {
Expand Down

0 comments on commit afd5c09

Please sign in to comment.