Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

android-unicode

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

android-unicode - npm Package Compare versions

Comparing version 1.0.12 to 1.1.0

app/build.gradle

2

lib/android-unicode.js

@@ -5,4 +5,4 @@ 'use strict';

exports.apkPath = path.join(__dirname, '..', 'bin', 'android_unicode_ime-debug.apk');
exports.apkPath = path.join(__dirname, '..', 'app', 'build', 'outputs', 'apk', 'app-debug.apk');
exports.package = 'macaca.unicode.ime';
exports.activity = '.Utf7ImeService';
{
"name": "android-unicode",
"version": "1.0.12",
"version": "1.1.0",
"description": "android unicode input apk",

@@ -15,3 +15,3 @@ "keywords": [

"dependencies": {
"ant-build": "~1.0.4"
"cross-spawn": "^5.1.0"
},

@@ -18,0 +18,0 @@ "devDependencies": {

@@ -6,13 +6,11 @@ #!/usr/bin/env node

var path = require('path');
var antBuild = require('ant-build');
var spawn = require('cross-spawn');
antBuild({
cwd: path.join(__dirname, '..')
}).then(function(d) {
console.log(d);
}).catch(function(e) {
setTimeout(function() {
console.log(e);
throw e;
});
const cwd = path.join(__dirname, '..');
const gradleFile = path.join(cwd, 'gradlew');
var proc = spawn.sync(gradleFile, ['assembleDebug'], {
stdio: 'inherit'
});
process.exit(proc.status);

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc