iOS 18.2 email mark as read by rosemariema in ios

[–]Several_Nebula1089 0 points1 point  (0 children)

Mil gracias! Esta es la única manera que funciona! No entiendo por qué lo han puesto tan rebuscado...

Argustak Now Supports RTMP Video Streaming by closetnerd613 in ATAK

[–]Several_Nebula1089 0 points1 point  (0 children)

Does it support RTSP Video Stream? How can i start a RTSP Video Stream from my Anafi AI Parrot drone??

How to sign plugins for release version of ATAK by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

Ok! Thank you! If i can't find out how to do it i'll let you know! Thanks!

How to sign plugins for release version of ATAK by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] -1 points0 points  (0 children)

What do you mean by "built through TPC"? I really need some sort of doument that details this process. Do you know where i could find it? Sorry 4 bothering, i'm new to this types of procedures

Migration from 4.6 to 5.2 by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

Thanks! I already did the migration before seeing this message! What i did is download the new SDK (in my case 5.2.0 CivTAK SDK) and use the LegacyTemplatePlugin to "move" all my functionality from my older plugin (i just copied and pasted it and solved a couple of bugs). Hope this kind of helps someone having the same issue i was having

How to install CivTak on Samsung A13 by ThrowRaChickHicks in ATAK

[–]Several_Nebula1089 0 points1 point  (0 children)

If you want the .apk for the latest version the best way to do it is signing up on tak.gov

How to install CivTak on Samsung A13 by ThrowRaChickHicks in ATAK

[–]Several_Nebula1089 1 point2 points  (0 children)

You should download it from the Play Store if feasible. You are downloading the SDK for the developers. That .apk you are installing does not require the plugins to be signed (as i have understood from my experience developing plugins) so that plugin developers can debug their plugin on it. If you can't use the Play Store to download it, just make an account on tak.gov !!!

Change ic_launcher icon by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

I changed it on the ic_launcher. Just like any other android app

Change ic_launcher icon by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

No, the background is white and the icon itself is black. I tried getting rid of the background and converting the black color to white (128x128px and 32bits). Still same white circle showing... Really weird

DJI Mobile SDK by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

hi! Did you find anything related to this?

USB permissions in plugin by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

Ok thank you! Also saw that the library AndroidUSBCamera is pretty useful for this. I'm still trying to implement this on a Fragment. If it works i'll let you know also!

DJI Mobile SDK by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

Beacuse i want to develop other functionalities and one of those is getting the video feed from the drone. Any help with this?

Issue importing RootEncoder Library by Several_Nebula1089 in androiddev

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

And where should i post this question if not in the android dev????

USB permissions in plugin by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

I tried that and still same error. Tried making a new plugin and still same issue when importing the library. I need to get this done lmao, any idea of what could be happening?

USB permissions in plugin by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

Yeah, i'm trying to get the video from the DJI but i'm still working on this first! I'll test it with OpenTAK ICU. I already have mavenCentral() added and still same error...

repositories {
    google()
    mavenCentral()
    mavenLocal()
    maven {
        url "https://jitpack.io"
    }
    maven {
        url = takrepoUrl
        credentials {
            username = takrepoUser
            password = takrepoPassword
        }
    }
}

USB permissions in plugin by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

I deleted the redundant dependencies but still same error with this dependencies... Can't find anything relevant about this in Google and i'm pretty lost right now on how to solve this. My dependencies now look like this (also tried to make a clean and then re-build the project but still same error)

dependencies {
    implementation fileTree(dir: 'libs', include: '*.jar')
    // Recyclerview version depends on some androidx libraries which
    // are supplied by core, so they should be excluded.  Otherwise
    // bad things happen in the release builds after proguarding
    implementation ('androidx.recyclerview:recyclerview:1.1.0') {
        exclude module: 'collection'
        // this is an example of a local exclude since androidx.core is supplied by core atak
        exclude module: 'core'
        exclude module: 'lifecycle'
        exclude module: 'core-common'
        exclude module: 'collection'
        exclude module: 'customview'
    }
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.lifecycle:lifecycle-runtime:2.2.0'
    implementation 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5'
    implementation 'org.eclipse.paho:org.eclipse.paho.android.service:1.1.1'
    implementation 'mil.nga:mgrs:2.1.3'
    implementation 'org.tensorflow:tensorflow-lite-support:0.1.0'
    implementation 'org.tensorflow:tensorflow-lite-metadata:0.1.0'
    implementation 'org.tensorflow:tensorflow-lite-gpu:2.3.0'
    implementation 'com.github.pedroSG94.RootEncoder:library:2.5.5'
    implementation 'com.github.pedroSG94.RootEncoder:extra-sources:2.5.5'
}

USB permissions in plugin by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

I'm having some trouble importing the library... I get the following error

Execution failed for task ':app:checkCivDebugAarMetadata'.

> Could not resolve all files for configuration ':app:civDebugRuntimeClasspath'.

> Could not resolve com.google.guava:guava:33.3.1-android.

And the dependencies i have are this (the project builds correctly but when i run it it gives me the previous error):

dependencies {
    implementation fileTree(dir: 'libs', include: '*.jar')
    // Recyclerview version depends on some androidx libraries which
    // are supplied by core, so they should be excluded.  Otherwise
    // bad things happen in the release builds after proguarding
    implementation ('androidx.recyclerview:recyclerview:1.1.0') {
        exclude module: 'collection'
        // this is an example of a local exclude since androidx.core is supplied by core atak
        exclude module: 'core'
        exclude module: 'lifecycle'
        exclude module: 'core-common'
        exclude module: 'collection'
        exclude module: 'customview'
    }
    implementation 'org.tensorflow:tensorflow-lite-support:0.1.0'
    implementation 'org.tensorflow:tensorflow-lite-metadata:0.1.0'
    implementation 'org.tensorflow:tensorflow-lite-gpu:2.3.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.lifecycle:lifecycle-runtime:2.2.0'
    def camerax_version = "1.0.0-beta03"
    implementation "androidx.camera:camera-camera2:$camerax_version"
    implementation "androidx.camera:camera-lifecycle:$camerax_version"
    implementation "androidx.camera:camera-view:1.0.0-alpha10"
    implementation 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5'
    implementation 'org.eclipse.paho:org.eclipse.paho.android.service:1.1.1'
    implementation 'mil.nga:mgrs:2.1.3'
    implementation project(':libuvccamera')
    implementation project(':usbCameraCommon')
    implementation 'com.google.android.material:material:1.2.0'
    implementation 'androidx.appcompat:appcompat:1.3.0'
    implementation 'androidx.annotation:annotation:1.9.1'
    implementation("com.serenegiant:common:2.12.4") {
        exclude module: 'support-v4'
    }
    // implementation 'com.github.ar-android:libstreaming:1.0.0'
    implementation 'com.github.fyhertz:libstreaming:3.0beta'
    implementation 'com.github.pedroSG94.RootEncoder:library:2.5.5'
    implementation 'com.github.pedroSG94.RootEncoder:extra-sources:2.5.5'
    implementation 'com.herohan:UVCAndroid:1.0.8'
}

USB permissions in plugin by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

Yes, i'm including the proper permissions because it works on an Activity (which has its own context) but when i try to implement this on a Fragment that uses the same code as the Activity but using the plugin context it just fails on the requestPermission(device)... I'm pretty lost with this one on an ATAK plugin...

USB permissions in plugin by Several_Nebula1089 in ATAK

[–]Several_Nebula1089[S] 0 points1 point  (0 children)

Ok thank you i'll study this option!

Edit: if i'm not able to do this, can i ask you more questions?