Skip to content

Commit

Permalink
Add category name & download count field + update gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
whyorean committed Jan 3, 2020
1 parent c34b262 commit 8f0f636
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
16 changes: 5 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
apply plugin: 'java'
apply plugin: 'com.google.protobuf'
apply plugin: 'com.github.dcendents.android-maven'

group = 'com.dragons.aurora'
version = '2.4'
Expand All @@ -19,9 +21,6 @@ repositories {
jcenter()
}

apply plugin: 'com.google.protobuf'
apply plugin: 'com.github.dcendents.android-maven'

sourceSets {
main {
java {
Expand All @@ -35,11 +34,6 @@ jar {
exclude("*.proto")
}

dependencies {
testCompile "junit:junit:4.12"
testCompile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.10.0'
}

tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
Expand All @@ -56,13 +50,13 @@ protobuf {
}

generateProtoTasks {
all()*.plugins {
javalite {}
}
all().each { task ->
task.builtins {
remove java
}
task.plugins {
javalite {}
}
}
}
}
2 changes: 2 additions & 0 deletions src/main/proto/GooglePlay.proto
Original file line number Diff line number Diff line change
Expand Up @@ -938,6 +938,8 @@ message AppDetails {
optional EarlyAccessInfo earlyAccessInfo = 36;
optional string instantLink = 43;
optional string developerAddress = 45;
optional string categoryName = 48;
optional string downloadCount = 53;
}
message CertificateSet {
repeated string certificateHash = 1;
Expand Down

0 comments on commit 8f0f636

Please sign in to comment.