Skip to content

Commit

Permalink
uploading obj data to Fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
menny committed Feb 18, 2018
1 parent 541a488 commit 71275e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,6 @@ dependencies {
exclude group: 'com.android.support'
}

implementation fileTree(dir: 'libs', include: '*.jar')

testImplementation project(path: ':base-test')

testImplementation 'com.github.triplet.simpleprovider:simpleprovider:1.1.0'
Expand All @@ -181,5 +179,7 @@ dependencies {

crashlytics {
enableNdk true
manifestPath = "${projectDir.absolutePath}/src/canary/AndroidManifest.xml"
androidNdkOut "${rootDir.absolutePath}/jnidictionaryv2/build/intermediates/ndkBuild/release/obj/local/"
androidNdkLibsOut "${rootDir.absolutePath}/app/build/intermediates/transforms/mergeJniLibs/canary/0/lib/"
manifestPath = "${projectDir.absolutePath}/build/intermediates/manifests/full/canary/AndroidManifest.xml"
}
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class ResourceBinaryDictionary extends Dictionary {
*/
public ResourceBinaryDictionary(@NonNull CharSequence dictionaryName, @NonNull Context originPackageContext, @XmlRes int resId, boolean isDebug) {
super(dictionaryName);
CompatUtils.loadNativeLibrary(originPackageContext, "anysoftkey2_jni", "1.0", isDebug);
CompatUtils.loadNativeLibrary(originPackageContext, "anysoftkey2_jni", "1.0.1", isDebug);
mOriginPackageContext = originPackageContext;
mDictResId = resId;
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/ci_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if [ "${BUILD_TYPE}" == "canary" ]; then
echo "Deploy build-type CANARY from master."
#adding INTERNET note to change-logs
echo '* INTERNET permission for BETA builds. Required for crash tracking.' | cat - app/src/main/play/en-US/whatsnew > temp && mv temp app/src/main/play/en-US/whatsnew
BUILD_TYPE="-DdeployChannel=alpha assembleCanary publishCanary"
BUILD_TYPE="-DdeployChannel=alpha assembleCanary publishCanary crashlyticsUploadSymbols"
elif [ "${BUILD_TYPE}" == "release" ]; then
echo "Deploy build-type RELEASE from 'release-branch'."
BUILD_TYPE="-DdeployChannel=beta assembleRelease publishRelease"
Expand Down

0 comments on commit 71275e6

Please sign in to comment.