mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-14 11:10:30 +03:00
import: make it work most of the time with git repos
This includes real tests too.
This commit is contained in:
parent
e049a120f8
commit
bfe587979d
28 changed files with 1184 additions and 42 deletions
55
tests/source-files/cn.wildfirechat.chat/push/build.gradle
Normal file
55
tests/source-files/cn.wildfirechat.chat/push/build.gradle
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
apply plugin: 'com.android.library'
|
||||
|
||||
android {
|
||||
compileSdkVersion 28
|
||||
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 28
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
||||
manifestPlaceholders = [
|
||||
|
||||
MI_APP_ID : "2882303761517722456",
|
||||
MI_APP_KEY : "5731772292456",
|
||||
|
||||
HMS_APP_ID : "100221325",
|
||||
|
||||
MEIZU_APP_ID : "113616",
|
||||
MEIZU_APP_KEY: "fcd886f51c144b45b87a67a28e2934d1",
|
||||
|
||||
VIVO_APP_ID : "12918",
|
||||
VIVO_APP_KEY : "c42feb05-de6c-427d-af55-4f902d9e0a75"
|
||||
]
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility 1.8
|
||||
targetCompatibility 1.8
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
|
||||
implementation 'com.huawei.android.hms:push:2.5.3.305'
|
||||
implementation 'com.huawei.android.hms:base:2.5.3.305'
|
||||
|
||||
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
|
||||
implementation project(':client')
|
||||
implementation 'com.meizu.flyme.internet:push-internal:3.4.2@aar'
|
||||
|
||||
def lifecycle_version = '2.2.0-alpha05'
|
||||
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue