Skip to content

Commit

Permalink
update converter
Browse files Browse the repository at this point in the history
  • Loading branch information
cinkhangin committed Sep 29, 2022
1 parent 90b3011 commit af3645d
Show file tree
Hide file tree
Showing 6 changed files with 241 additions and 36 deletions.
1 change: 0 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'maven-publish'
}

android {
Expand Down
15 changes: 15 additions & 0 deletions zawni/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
id 'maven-publish'
}

android {
Expand Down Expand Up @@ -38,4 +39,18 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release

groupId = 'com.github.cinkhangin'
artifactId = 'zawni'
version = '0.0.2-beta'
}
}
}
}
5 changes: 5 additions & 0 deletions zawni/src/main/java/com/naulian/zawni/CodeType.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.naulian.zawni

enum class CodeType {
UNICODE,ZAWGYI
}
Loading

0 comments on commit af3645d

Please sign in to comment.