
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@tru_id/tru-plugin-ionic-capacitor
Advanced tools
tru.ID Ionic & Capacitor plugin that enables an HTTP request to be made over cellular even when on WiFi.
npm install @tru_id/tru-plugin-ionic-capacitor
ionic build
ionic cap sync
For Android, update the following in android/build.gradle
to:
allprojects {
repositories {
google()
jcenter()
maven {
url "https://gitlab.com/api/v4/projects/22035475/packages/maven"
}
}
}
Update the following in android/app/build.gradle
to:
dependencies {
implementation "com.squareup.okhttp3:okhttp:4.9.0"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.2
}
Add the plugin to your app's MainActivity
onCreate
method:
import com.trupluginioniccapacitor.TruPluginIonicCapacitorPlugin;
@Override
public void onCreate(Bundle savedInstance){
super.onCreate(savedInstance);
registerPlugin(TruPluginIonicCapacitorPlugin.class);
}
import com.trupluginioniccapacitor.TruPluginIonicCapacitorPlugin
public override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
registerPlugin(TruPluginIonicCapacitorPlugin::class.java)
}
import { TruPluginIonicCapacitor } from '@tru_id/tru-plugin-ionic-capacitor';
// Test if the device mobile network is currently supported
const reachabilityDetails = await TruPluginIonicCapacitor.isReachable();
// Make a GET request using the cellular connection to the tru.ID check URL
const checkDetails = await TruPluginIonicCapacitor.check({ url: check_url });
console.log('Check results', checkDetails.result);
console.log('Reachability details', reachabilityDetails.result);
FAQs
tru.ID Ionic & Capacitor plugin that enables an HTTP request to be made over cellular even when on WiFi.
The npm package @tru_id/tru-plugin-ionic-capacitor receives a total of 0 weekly downloads. As such, @tru_id/tru-plugin-ionic-capacitor popularity was classified as not popular.
We found that @tru_id/tru-plugin-ionic-capacitor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.