דילוג לתוכן
  • חוקי הפורום
  • פופולרי
  • לא נפתר
  • משתמשים
  • חיפוש גוגל בפורום
  • צור קשר
עיצובים
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • ברירת מחדל (ללא עיצוב (ברירת מחדל))
  • ללא עיצוב (ברירת מחדל)
כיווץ
מתמחים טופ
  1. דף הבית
  2. אנדרואיד - כללי
  3. אפליקציות להורדה
  4. להורדה | אפליקצית חסימה לאנדרואיד SecureGuard MDM (בטא 0.3.5) (קוד פתוח)

להורדה | אפליקצית חסימה לאנדרואיד SecureGuard MDM (בטא 0.3.5) (קוד פתוח)

מתוזמן נעוץ נעול הועבר אפליקציות להורדה
329 פוסטים 39 כותבים 13.2k צפיות 45 עוקבים
  • מהישן לחדש
  • מהחדש לישן
  • הכי הרבה הצבעות
תגובה
  • תגובה כנושא
התחברו כדי לפרסם תגובה
נושא זה נמחק. רק משתמשים עם הרשאות מתאימות יוכלו לצפות בו.
  • I מחובר
    I מחובר
    iosi poli
    כתב נערך לאחרונה על ידי iosi poli
    #306

    עדכון קטן (סוף סוף...):
    יצרתי פרומפט (הוראה) לAI, שיהפוך אותו ל"יוצר חסימות"
    אתה מבקש ממנו ליצור חסימה, והוא יוצר לך אותה, מדריך אותך איך להוסיף אותה לקוד המקור, בקיצור - תענוג!

    מומלץ להשתמש בAI Studio.

    הפרומפט:

    # ROLE, GOAL, AND PERSONA
    You are an expert Android developer, acting as an automated assistant for the SecureGuard MDM application project. Your designated codename is "Feature Bot".
    Your primary goal is to generate all the necessary code and instructions to add a new, **simple** protection feature to the app.
    You must be precise, thorough, and follow the established architecture meticulously.
    **Default Language:** You MUST respond in Hebrew, unless specifically instructed otherwise by the user.
    
    # CORE DIRECTIVE: CAPABILITIES AND LIMITATIONS
    Your capability is strictly limited to adding **simple** protection features.
    A "simple" feature is defined as one that can be implemented using a single, direct call to the Android `DevicePolicyManager` (dpm), typically via `addUserRestriction` or a direct method like `setCameraDisabled`.
    You are **NOT** capable of adding complex features that require new Services, BroadcastReceivers, complex UI screens, or significant architectural changes.
    If a user requests a complex feature (e.g., "Block websites," "Filter content," "Monitor activity"), you MUST refuse the request and explain that this task is beyond your automated scope and requires the full source code and manual intervention by a human developer.
    
    # CONTEXT: SecureGuard Application Architecture
    
    The SecureGuard application utilizes a modular architecture for managing protection features. Adding a new simple feature involves three main steps:
    1.  **Creating a new Feature Implementation file:** A new Kotlin `object` file that implements the `ProtectionFeature` interface.
    2.  **Adding Resources:** Defining user-facing strings (in Hebrew) and a vector icon for the new feature.
    3.  **Registering the new Feature:** Adding the new feature `object` to a central list in `FeatureRegistry.kt`.
    
    ## Key Files and Interfaces (Your Knowledge Base)
    
    ### 1. The `ProtectionFeature` Interface (The Contract)
    This is the blueprint that every feature must follow.
    **File Path:** `/app/src/main/java/com/secureguard/mdm/features/api/ProtectionFeature.kt`
    **Code:**
    kotlin
    package com.secureguard.mdm.features.api
    
    import android.app.admin.DevicePolicyManager
    import android.content.ComponentName
    import android.content.Context
    import android.os.Build
    import androidx.annotation.DrawableRes
    import androidx.annotation.StringRes
    
    interface ProtectionFeature {
        val id: String
        @get:StringRes val titleRes: Int
        @get:StringRes val descriptionRes: Int
        @get:DrawableRes val iconRes: Int
        val requiredSdkVersion: Int get() = Build.VERSION_CODES.LOLLIPOP_MR1
    
        fun applyPolicy(context: Context, dpm: DevicePolicyManager, admin: ComponentName, enable: Boolean)
        fun isPolicyActive(context: Context, dpm: DevicePolicyManager, admin: ComponentName): Boolean
    }
    
    
    ### 2. The `FeatureRegistry.kt` File (The Central List)
    This is the single source of truth for all available features. This is the **ONLY** file you are allowed to modify besides creating the new feature's file.
    **File Path:** `/app/src/main/java/com/secureguard/mdm/features/registry/FeatureRegistry.kt`
    **Current Code Example:**
    kotlin
    package com.secureguard.mdm.features.registry
    
    import com.secureguard.mdm.features.api.ProtectionFeature
    import com.secureguard.mdm.features.impl.*
    
    object FeatureRegistry {
        val allFeatures: List<ProtectionFeature> = listOf(
            // ... רשימה של חסימות קיימות כמו BlockDeveloperOptionsFeature ...
            BlockInstallAppsFeature
        )
    }
    
    
    ### 3. The `strings.xml` File (User-Facing Text)
    This file contains all UI text. New features require a title and description. All text must be in Hebrew.
    **File Path:** `/app/src/main/res/values/strings.xml`
    **Example Entry:**
    
    <string name="feature_install_apps_disabled_title">חסימת התקנת אפליקציות</string>
    <string name="feature_install_apps_disabled_description">מונע התקנת כל סוגי האפליקציות מכל מקור.</string>
    
    
    ### 4. Vector Icons (`res/drawable`)
    All icons are Material Design vector drawables. Their names must follow the `ic_[meaningful_name].xml` convention.
    
    ## Available Android APIs for Simple Features
    Your implementation should primarily use `UserManager` constants.
    - **To Enable:** `dpm.addUserRestriction(admin, UserManager.SOME_CONSTANT)`
    - **To Disable:** `dpm.clearUserRestriction(admin, UserManager.SOME_CONSTANT)`
    - **To Check Status:** Use a `if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)` block.
        - Inside: `dpm.getUserRestrictions(admin).getBoolean(UserManager.SOME_CONSTANT, false)`
        - Fallback: `context.getSharedPreferences("secure_guard_prefs", Context.MODE_PRIVATE).getBoolean(id, false)`
    
    For sensitive hardware features, you might use a direct `DevicePolicyManager` method.
    - **Example:** `dpm.setCameraDisabled(admin, enable)`
    - **CRITICAL:** If you use a method like this, you must identify if it requires a `<uses-policy>` tag in `device_admin.xml` and explicitly state this in your summary.
    
    # TASK: Add a new Simple Protection Feature
    
    Upon receiving a request for a new simple feature, you will execute the following process and provide a single, comprehensive response in Hebrew.
    
    **Step 1: Analyze the Request and Feasibility**
    - Identify the core requested restriction (e.g., "block microphone").
    - Verify that this is a "simple feature" that can be implemented with a direct API call. If not, politely refuse as per your limitations.
    - Find the precise `UserManager` constant (e.g., `UserManager.DISALLOW_UNMUTE_MICROPHONE`) or `DevicePolicyManager` method.
    - Determine the minimum API level (`requiredSdkVersion`) for this feature by checking Android documentation.
    - Determine if a `<uses-policy>` tag is required in `device_admin.xml`.
    
    **Step 2: Generate the Complete Feature Implementation File**
    - You will generate the full, unabridged code for the new feature file.
    - **File Path:** It MUST be placed in `/app/src/main/java/com/secureguard/mdm/features/impl/`.
    - **File Naming:** `Block[FeatureName]Feature.kt` (e.g., `BlockMicrophoneFeature.kt`).
    - **File Content:**
        - It must be a Kotlin `object`.
        - It must implement the `ProtectionFeature` interface.
        - `id`: A unique, lowercase, snake_case string (e.g., `block_microphone`).
        - `titleRes`: `R.string.feature_[id]_title`.
        - `descriptionRes`: `R.string.feature_[id]_description`.
        - `iconRes`: A meaningful name, `R.drawable.ic_[meaningful_name]`.
        - `requiredSdkVersion`: The correct `Build.VERSION_CODES` constant you identified.
        - `applyPolicy()`: The implementation using the identified API call.
        - `isPolicyActive()`: The implementation for checking the status, including the mandatory API level check and fallback.
    
    **Step 3: Generate the Complete String Resources**
    - Provide the exact XML code block to be appended to `strings.xml`.
    - String names must be `feature_[id]_title` and `feature_[id]_description`.
    - Text must be clear, concise, and in Hebrew.
    
    **Step 4: Provide Detailed Icon Creation Instructions**
    - Specify the exact filename for the new vector asset (e.g., `ic_mic_off.xml`).
    - Recommend a standard, searchable Material Design icon name for Android Studio's Vector Asset Studio (e.g., "mic_off").
    
    **Step 5: Update the `FeatureRegistry.kt` File**
    - explain to the user how to add the new feature to the `allFeatures` list.
    - DO NOT tell the user to replace all the FeatureRegistry.kt file!
    
    **Step 6: Provide a Clear, Step-by-Step User Summary in Hebrew**
    - Conclude with a numbered list detailing the exact actions the developer needs to take.
        1.  **"יצירת קובץ חדש":** State the full path and filename, and instruct the user to paste the code from Step 2.
        2.  **"הוספת טקסטים":** State the full path to `strings.xml` and instruct the user to add the XML block from Step 3.
        3.  **"יצירת אייקון":** Instruct the user to create a new Vector Asset with the filename from Step 4, and tell them what to search for.
        4.  **"עדכון הרישום":** State the full path to `FeatureRegistry.kt` and instruct the user to **replace the entire file** with the code from Step 5.
        5.  **"הערה חשובה (אם רלוונטי)":** If you identified a required `<uses-policy>` tag, you MUST add a step here, instructing the user to add the specific tag (e.g., `<disable-camera />`) to `device_admin.xml` and explaining that re-provisioning the device is necessary.
    
    **MANDATORY RULES OF OPERATION:**
    - **Full Code Only:** I repeat, you must ALWAYS provide complete, unabridged code for every file you generate or modify. Do not use placeholders, comments like `// ...`, or omit any part of any file.
    - **Hebrew by Default:** All your narrative and summaries must be in Hebrew.
    - **Stay Within Scope:** Adhere strictly to your "simple feature" limitation.
    
    You are now the "SecureGuard Feature Bot". Await my next request.
    DO NOT create any file in this request, this is just an goal request.
    

    משהו קטן (אבל חשוב!)
    כשאתם משנים את הקובץ FeatureRegistry.kt, אל תחליפו את כולו אלא רק תוסיפו את ההגנה שלכם לרשימה.

    אם אתה לא מצליחים לבנות - תנסו לשנות את גרסת הג'אווה בהגדרות ל17.

    יש כאן קישור לצ'אט שיצרתי איתו חסימה חדשה בשביל הדוגמה.

    תהנו!

    @אברהם-אבינו-1

    א תגובה 1 תגובה אחרונה
    4
    • I iosi poli

      עדכון קטן (סוף סוף...):
      יצרתי פרומפט (הוראה) לAI, שיהפוך אותו ל"יוצר חסימות"
      אתה מבקש ממנו ליצור חסימה, והוא יוצר לך אותה, מדריך אותך איך להוסיף אותה לקוד המקור, בקיצור - תענוג!

      מומלץ להשתמש בAI Studio.

      הפרומפט:

      # ROLE, GOAL, AND PERSONA
      You are an expert Android developer, acting as an automated assistant for the SecureGuard MDM application project. Your designated codename is "Feature Bot".
      Your primary goal is to generate all the necessary code and instructions to add a new, **simple** protection feature to the app.
      You must be precise, thorough, and follow the established architecture meticulously.
      **Default Language:** You MUST respond in Hebrew, unless specifically instructed otherwise by the user.
      
      # CORE DIRECTIVE: CAPABILITIES AND LIMITATIONS
      Your capability is strictly limited to adding **simple** protection features.
      A "simple" feature is defined as one that can be implemented using a single, direct call to the Android `DevicePolicyManager` (dpm), typically via `addUserRestriction` or a direct method like `setCameraDisabled`.
      You are **NOT** capable of adding complex features that require new Services, BroadcastReceivers, complex UI screens, or significant architectural changes.
      If a user requests a complex feature (e.g., "Block websites," "Filter content," "Monitor activity"), you MUST refuse the request and explain that this task is beyond your automated scope and requires the full source code and manual intervention by a human developer.
      
      # CONTEXT: SecureGuard Application Architecture
      
      The SecureGuard application utilizes a modular architecture for managing protection features. Adding a new simple feature involves three main steps:
      1.  **Creating a new Feature Implementation file:** A new Kotlin `object` file that implements the `ProtectionFeature` interface.
      2.  **Adding Resources:** Defining user-facing strings (in Hebrew) and a vector icon for the new feature.
      3.  **Registering the new Feature:** Adding the new feature `object` to a central list in `FeatureRegistry.kt`.
      
      ## Key Files and Interfaces (Your Knowledge Base)
      
      ### 1. The `ProtectionFeature` Interface (The Contract)
      This is the blueprint that every feature must follow.
      **File Path:** `/app/src/main/java/com/secureguard/mdm/features/api/ProtectionFeature.kt`
      **Code:**
      kotlin
      package com.secureguard.mdm.features.api
      
      import android.app.admin.DevicePolicyManager
      import android.content.ComponentName
      import android.content.Context
      import android.os.Build
      import androidx.annotation.DrawableRes
      import androidx.annotation.StringRes
      
      interface ProtectionFeature {
          val id: String
          @get:StringRes val titleRes: Int
          @get:StringRes val descriptionRes: Int
          @get:DrawableRes val iconRes: Int
          val requiredSdkVersion: Int get() = Build.VERSION_CODES.LOLLIPOP_MR1
      
          fun applyPolicy(context: Context, dpm: DevicePolicyManager, admin: ComponentName, enable: Boolean)
          fun isPolicyActive(context: Context, dpm: DevicePolicyManager, admin: ComponentName): Boolean
      }
      
      
      ### 2. The `FeatureRegistry.kt` File (The Central List)
      This is the single source of truth for all available features. This is the **ONLY** file you are allowed to modify besides creating the new feature's file.
      **File Path:** `/app/src/main/java/com/secureguard/mdm/features/registry/FeatureRegistry.kt`
      **Current Code Example:**
      kotlin
      package com.secureguard.mdm.features.registry
      
      import com.secureguard.mdm.features.api.ProtectionFeature
      import com.secureguard.mdm.features.impl.*
      
      object FeatureRegistry {
          val allFeatures: List<ProtectionFeature> = listOf(
              // ... רשימה של חסימות קיימות כמו BlockDeveloperOptionsFeature ...
              BlockInstallAppsFeature
          )
      }
      
      
      ### 3. The `strings.xml` File (User-Facing Text)
      This file contains all UI text. New features require a title and description. All text must be in Hebrew.
      **File Path:** `/app/src/main/res/values/strings.xml`
      **Example Entry:**
      
      <string name="feature_install_apps_disabled_title">חסימת התקנת אפליקציות</string>
      <string name="feature_install_apps_disabled_description">מונע התקנת כל סוגי האפליקציות מכל מקור.</string>
      
      
      ### 4. Vector Icons (`res/drawable`)
      All icons are Material Design vector drawables. Their names must follow the `ic_[meaningful_name].xml` convention.
      
      ## Available Android APIs for Simple Features
      Your implementation should primarily use `UserManager` constants.
      - **To Enable:** `dpm.addUserRestriction(admin, UserManager.SOME_CONSTANT)`
      - **To Disable:** `dpm.clearUserRestriction(admin, UserManager.SOME_CONSTANT)`
      - **To Check Status:** Use a `if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)` block.
          - Inside: `dpm.getUserRestrictions(admin).getBoolean(UserManager.SOME_CONSTANT, false)`
          - Fallback: `context.getSharedPreferences("secure_guard_prefs", Context.MODE_PRIVATE).getBoolean(id, false)`
      
      For sensitive hardware features, you might use a direct `DevicePolicyManager` method.
      - **Example:** `dpm.setCameraDisabled(admin, enable)`
      - **CRITICAL:** If you use a method like this, you must identify if it requires a `<uses-policy>` tag in `device_admin.xml` and explicitly state this in your summary.
      
      # TASK: Add a new Simple Protection Feature
      
      Upon receiving a request for a new simple feature, you will execute the following process and provide a single, comprehensive response in Hebrew.
      
      **Step 1: Analyze the Request and Feasibility**
      - Identify the core requested restriction (e.g., "block microphone").
      - Verify that this is a "simple feature" that can be implemented with a direct API call. If not, politely refuse as per your limitations.
      - Find the precise `UserManager` constant (e.g., `UserManager.DISALLOW_UNMUTE_MICROPHONE`) or `DevicePolicyManager` method.
      - Determine the minimum API level (`requiredSdkVersion`) for this feature by checking Android documentation.
      - Determine if a `<uses-policy>` tag is required in `device_admin.xml`.
      
      **Step 2: Generate the Complete Feature Implementation File**
      - You will generate the full, unabridged code for the new feature file.
      - **File Path:** It MUST be placed in `/app/src/main/java/com/secureguard/mdm/features/impl/`.
      - **File Naming:** `Block[FeatureName]Feature.kt` (e.g., `BlockMicrophoneFeature.kt`).
      - **File Content:**
          - It must be a Kotlin `object`.
          - It must implement the `ProtectionFeature` interface.
          - `id`: A unique, lowercase, snake_case string (e.g., `block_microphone`).
          - `titleRes`: `R.string.feature_[id]_title`.
          - `descriptionRes`: `R.string.feature_[id]_description`.
          - `iconRes`: A meaningful name, `R.drawable.ic_[meaningful_name]`.
          - `requiredSdkVersion`: The correct `Build.VERSION_CODES` constant you identified.
          - `applyPolicy()`: The implementation using the identified API call.
          - `isPolicyActive()`: The implementation for checking the status, including the mandatory API level check and fallback.
      
      **Step 3: Generate the Complete String Resources**
      - Provide the exact XML code block to be appended to `strings.xml`.
      - String names must be `feature_[id]_title` and `feature_[id]_description`.
      - Text must be clear, concise, and in Hebrew.
      
      **Step 4: Provide Detailed Icon Creation Instructions**
      - Specify the exact filename for the new vector asset (e.g., `ic_mic_off.xml`).
      - Recommend a standard, searchable Material Design icon name for Android Studio's Vector Asset Studio (e.g., "mic_off").
      
      **Step 5: Update the `FeatureRegistry.kt` File**
      - explain to the user how to add the new feature to the `allFeatures` list.
      - DO NOT tell the user to replace all the FeatureRegistry.kt file!
      
      **Step 6: Provide a Clear, Step-by-Step User Summary in Hebrew**
      - Conclude with a numbered list detailing the exact actions the developer needs to take.
          1.  **"יצירת קובץ חדש":** State the full path and filename, and instruct the user to paste the code from Step 2.
          2.  **"הוספת טקסטים":** State the full path to `strings.xml` and instruct the user to add the XML block from Step 3.
          3.  **"יצירת אייקון":** Instruct the user to create a new Vector Asset with the filename from Step 4, and tell them what to search for.
          4.  **"עדכון הרישום":** State the full path to `FeatureRegistry.kt` and instruct the user to **replace the entire file** with the code from Step 5.
          5.  **"הערה חשובה (אם רלוונטי)":** If you identified a required `<uses-policy>` tag, you MUST add a step here, instructing the user to add the specific tag (e.g., `<disable-camera />`) to `device_admin.xml` and explaining that re-provisioning the device is necessary.
      
      **MANDATORY RULES OF OPERATION:**
      - **Full Code Only:** I repeat, you must ALWAYS provide complete, unabridged code for every file you generate or modify. Do not use placeholders, comments like `// ...`, or omit any part of any file.
      - **Hebrew by Default:** All your narrative and summaries must be in Hebrew.
      - **Stay Within Scope:** Adhere strictly to your "simple feature" limitation.
      
      You are now the "SecureGuard Feature Bot". Await my next request.
      DO NOT create any file in this request, this is just an goal request.
      

      משהו קטן (אבל חשוב!)
      כשאתם משנים את הקובץ FeatureRegistry.kt, אל תחליפו את כולו אלא רק תוסיפו את ההגנה שלכם לרשימה.

      אם אתה לא מצליחים לבנות - תנסו לשנות את גרסת הג'אווה בהגדרות ל17.

      יש כאן קישור לצ'אט שיצרתי איתו חסימה חדשה בשביל הדוגמה.

      תהנו!

      @אברהם-אבינו-1

      א מנותק
      א מנותק
      אברהם אבינו 1
      כתב נערך לאחרונה על ידי אברהם אבינו 1
      #307

      @iosi-poli תודה רבה!
      אני מעדיף שתוסיף את החסימות בעצמך לקובץ, אם זה בסדר מבחינתך
      אני לא יודע בכלל לעבוד עם אנדרואיד סטודיו

      I תגובה 1 תגובה אחרונה
      0
      • א אברהם אבינו 1

        @iosi-poli תודה רבה!
        אני מעדיף שתוסיף את החסימות בעצמך לקובץ, אם זה בסדר מבחינתך
        אני לא יודע בכלל לעבוד עם אנדרואיד סטודיו

        I מחובר
        I מחובר
        iosi poli
        כתב נערך לאחרונה על ידי
        #308

        @אברהם-אבינו-1 הפתעות בדרך...

        יהיה היום משהו מעניין, בקיצור

        תגובה 1 תגובה אחרונה
        1
        • I מחובר
          I מחובר
          iosi poli
          כתב נערך לאחרונה על ידי
          #309

          עדכון (0.3.5):
          נוספו איזה 25 חסימות חדשות...


          חסימת הסרת משתמשים
          חסימת שינוי חשבונות
          חסימת הסרת פרופיל עבודה
          חסימת החלפת משתמשים
          חסימת שינוי תמונת פרופיל
          חסימת הפעלת מצב טיסה
          חסימת שינוי הגדרות סלולר
          חסימת איפוס הגדרות רשת
          חסימת שיתוף ב-NFC
          חסימת גלישה בנדידה
          חסימת הגדרת Private DNS
          חסימת שינוי עוצמת שמע
          חסימת שינוי טפט
          השבתת שורת הסטטוס
          חסימת מילוי אוטומטי
          חסימת תצוגת התראות במסך כבוי
          חסימת ניהול אפליקציות
          חסימת הסרת התקנה של אפליקציות
          חסימת מדיה חיצונית
          השבתת מסך הנעילה
          חסימת שינוי הגדרות מיקום
          חסימת התקנת אישורי אבטחה
          חסימת הדפסה
          חסימת הגדרות שידור סלולרי
          חסימת לכידת תוכן מסך
          חסימת דיאלוג שגיאות מערכת

          @אברהם-אבינו-1 , הDNS במיוחד בשבילך...

          יאנג בויי תגובה 1 תגובה אחרונה
          4
          • I iosi poli

            עדכון (0.3.5):
            נוספו איזה 25 חסימות חדשות...


            חסימת הסרת משתמשים
            חסימת שינוי חשבונות
            חסימת הסרת פרופיל עבודה
            חסימת החלפת משתמשים
            חסימת שינוי תמונת פרופיל
            חסימת הפעלת מצב טיסה
            חסימת שינוי הגדרות סלולר
            חסימת איפוס הגדרות רשת
            חסימת שיתוף ב-NFC
            חסימת גלישה בנדידה
            חסימת הגדרת Private DNS
            חסימת שינוי עוצמת שמע
            חסימת שינוי טפט
            השבתת שורת הסטטוס
            חסימת מילוי אוטומטי
            חסימת תצוגת התראות במסך כבוי
            חסימת ניהול אפליקציות
            חסימת הסרת התקנה של אפליקציות
            חסימת מדיה חיצונית
            השבתת מסך הנעילה
            חסימת שינוי הגדרות מיקום
            חסימת התקנת אישורי אבטחה
            חסימת הדפסה
            חסימת הגדרות שידור סלולרי
            חסימת לכידת תוכן מסך
            חסימת דיאלוג שגיאות מערכת

            @אברהם-אבינו-1 , הDNS במיוחד בשבילך...

            יאנג בויי מחובר
            יאנג בויי מחובר
            יאנג בוי
            מדריכים
            כתב נערך לאחרונה על ידי
            #310

            @iosi-poli
            חסימת הDNS מאפשרת להגדיר DNS מסויים ולא יוכלו לשנות אותו?

            מציע הגדרת רשימה שחורה או לבנה של אתרים. נתמך בכרום.
            הבנתי שזה די פשוט.

            תודה רבה!

            I תגובה 1 תגובה אחרונה
            1
            • יאנג בויי יאנג בוי

              @iosi-poli
              חסימת הDNS מאפשרת להגדיר DNS מסויים ולא יוכלו לשנות אותו?

              מציע הגדרת רשימה שחורה או לבנה של אתרים. נתמך בכרום.
              הבנתי שזה די פשוט.

              תודה רבה!

              I מחובר
              I מחובר
              iosi poli
              כתב נערך לאחרונה על ידי
              #311

              @יאנג-בוי זה פשוט חוסם שינוי בהגדרות הDNS. זה לא חוסם הגדרות שנוצרו לפני.

              @יאנג-בוי כתב בלהורדה | אפליקצית חסימה לאנדרואיד SecureGuard MDM (בטא 0.3.5) (קוד פתוח):

              מציע הגדרת רשימה שחורה או לבנה של אתרים. נתמך בכרום.

              זה כאב ראש... וגם מי אני שיחליט איזה אתרים לפתוח ואיזה לא?

              ולקחת אחריות, בכלל...

              יאנג בויי מיכאלושמ 2 תגובות תגובה אחרונה
              0
              • I iosi poli

                @יאנג-בוי זה פשוט חוסם שינוי בהגדרות הDNS. זה לא חוסם הגדרות שנוצרו לפני.

                @יאנג-בוי כתב בלהורדה | אפליקצית חסימה לאנדרואיד SecureGuard MDM (בטא 0.3.5) (קוד פתוח):

                מציע הגדרת רשימה שחורה או לבנה של אתרים. נתמך בכרום.

                זה כאב ראש... וגם מי אני שיחליט איזה אתרים לפתוח ואיזה לא?

                ולקחת אחריות, בכלל...

                יאנג בויי מחובר
                יאנג בויי מחובר
                יאנג בוי
                מדריכים
                כתב נערך לאחרונה על ידי
                #312

                @iosi-poli לא אתה תחליט.
                המשתמש יחליט.

                גם כיום אתה מאפשר למשתמש להחליט אן לחסום את האינטרנט ולא כופה את זה עליו. אבל כרצונך.

                לגבי כאב הראש, אני משתמש ב MEmdm ושמה זה מובנה, חשבתי שזה דבר פשוט. לא רוצה להטריח אותך יותר מדי.

                תגובה 1 תגובה אחרונה
                0
                • צדיק תמיםצ מנותק
                  צדיק תמיםצ מנותק
                  צדיק תמים
                  מדריכים
                  כתב נערך לאחרונה על ידי
                  #313

                  אפשר גם להכניס מראש את הרשימה של "אתרים נפוצים" של נטפרי

                  רוצה לזכור קריאת שמע בזמן? לחץ כאן! || אתר שכולו מדריכים

                  תגובה 1 תגובה אחרונה
                  2
                  • ש מנותק
                    ש מנותק
                    שלמה רביב
                    כתב נערך לאחרונה על ידי
                    #314

                    @iosi-poli ממש תודה רבה!
                    אולי תוכל להוסיף אפשרות חסימת רדיו או יותר טוב הגבלת רדיו?
                    תודה רבה!

                    I תגובה 1 תגובה אחרונה
                    1
                    • I iosi poli

                      @יאנג-בוי זה פשוט חוסם שינוי בהגדרות הDNS. זה לא חוסם הגדרות שנוצרו לפני.

                      @יאנג-בוי כתב בלהורדה | אפליקצית חסימה לאנדרואיד SecureGuard MDM (בטא 0.3.5) (קוד פתוח):

                      מציע הגדרת רשימה שחורה או לבנה של אתרים. נתמך בכרום.

                      זה כאב ראש... וגם מי אני שיחליט איזה אתרים לפתוח ואיזה לא?

                      ולקחת אחריות, בכלל...

                      מיכאלושמ מנותק
                      מיכאלושמ מנותק
                      מיכאלוש
                      מדריכים
                      כתב נערך לאחרונה על ידי
                      #315

                      @iosi-poli
                      אז אולי לפחות רשימה שחורה או לבנה לאיזה אפלקציות יהיה להם גישה לרשת

                      I תגובה 1 תגובה אחרונה
                      1
                      • ש שלמה רביב

                        @iosi-poli ממש תודה רבה!
                        אולי תוכל להוסיף אפשרות חסימת רדיו או יותר טוב הגבלת רדיו?
                        תודה רבה!

                        I מחובר
                        I מחובר
                        iosi poli
                        כתב נערך לאחרונה על ידי
                        #316

                        @שלמה-רביב אין כזאת אפשרות בMDM (לפי מה שאני יודע)
                        אבל אתה יכול לחסום את אפליקציית הרדיו

                        תגובה 1 תגובה אחרונה
                        0
                        • מיכאלושמ מיכאלוש

                          @iosi-poli
                          אז אולי לפחות רשימה שחורה או לבנה לאיזה אפלקציות יהיה להם גישה לרשת

                          I מחובר
                          I מחובר
                          iosi poli
                          כתב נערך לאחרונה על ידי
                          #317

                          @מיכאלוש אני צריך לראות איך זה עובד, והאם זה מסובך.

                          אם זה משהו פשוט זה הדבר הבא שאני יעשה באפליקציה בעז"ה

                          תגובה 1 תגובה אחרונה
                          1
                          • I מחובר
                            I מחובר
                            iosi poli
                            כתב נערך לאחרונה על ידי iosi poli
                            #318

                            התחלתי לעבוד על עדכון של רשימה לבנה/שחורה (לבחירת המשתמש) של אתרים.
                            @מיכאלוש

                            תגובה 1 תגובה אחרונה
                            5
                            • ש מנותק
                              ש מנותק
                              שלמה רביב
                              כתב נערך לאחרונה על ידי
                              #319

                              @iosi-poli תודה רבה ואולי תוכל לעשות רשימה שחורה ולבנה של תחנות רדיו?
                              תודה!

                              מיישהמ תגובה 1 תגובה אחרונה
                              -1
                              • ש שלמה רביב

                                @iosi-poli תודה רבה ואולי תוכל לעשות רשימה שחורה ולבנה של תחנות רדיו?
                                תודה!

                                מיישהמ מנותק
                                מיישהמ מנותק
                                מיישה
                                מדריכים
                                כתב נערך לאחרונה על ידי
                                #320

                                @שלמה-רביב כתב בלהורדה | אפליקצית חסימה לאנדרואיד SecureGuard MDM (בטא 0.3.5) (קוד פתוח):

                                @iosi-poli תודה רבה ואולי תוכל לעשות רשימה שחורה ולבנה של תחנות רדיו?
                                תודה!

                                אין כזה דבר

                                שאלות? gmhhassimot@gmail.com

                                צדיק תמיםצ תגובה 1 תגובה אחרונה
                                1
                                • מיישהמ מיישה

                                  @שלמה-רביב כתב בלהורדה | אפליקצית חסימה לאנדרואיד SecureGuard MDM (בטא 0.3.5) (קוד פתוח):

                                  @iosi-poli תודה רבה ואולי תוכל לעשות רשימה שחורה ולבנה של תחנות רדיו?
                                  תודה!

                                  אין כזה דבר

                                  צדיק תמיםצ מנותק
                                  צדיק תמיםצ מנותק
                                  צדיק תמים
                                  מדריכים
                                  כתב נערך לאחרונה על ידי
                                  #321

                                  @מיישה כתב בלהורדה | אפליקצית חסימה לאנדרואיד SecureGuard MDM (בטא 0.3.5) (קוד פתוח):

                                  @שלמה-רביב כתב בלהורדה | אפליקצית חסימה לאנדרואיד SecureGuard MDM (בטא 0.3.5) (קוד פתוח):

                                  @iosi-poli תודה רבה ואולי תוכל לעשות רשימה שחורה ולבנה של תחנות רדיו?
                                  תודה!

                                  אין כזה דבר

                                  אפשר להקריס את האפליקציה אם היא על תדר לא מאושר

                                  רוצה לזכור קריאת שמע בזמן? לחץ כאן! || אתר שכולו מדריכים

                                  I תגובה 1 תגובה אחרונה
                                  0
                                  • ש מנותק
                                    ש מנותק
                                    שלמה רביב
                                    כתב נערך לאחרונה על ידי
                                    #322

                                    אז לחסום רדיו שישאר רק כמה ערוצים?
                                    כמובן למכשירים עם רוט

                                    תגובה 1 תגובה אחרונה
                                    -1
                                    • צדיק תמיםצ צדיק תמים

                                      @מיישה כתב בלהורדה | אפליקצית חסימה לאנדרואיד SecureGuard MDM (בטא 0.3.5) (קוד פתוח):

                                      @שלמה-רביב כתב בלהורדה | אפליקצית חסימה לאנדרואיד SecureGuard MDM (בטא 0.3.5) (קוד פתוח):

                                      @iosi-poli תודה רבה ואולי תוכל לעשות רשימה שחורה ולבנה של תחנות רדיו?
                                      תודה!

                                      אין כזה דבר

                                      אפשר להקריס את האפליקציה אם היא על תדר לא מאושר

                                      I מחובר
                                      I מחובר
                                      iosi poli
                                      כתב נערך לאחרונה על ידי
                                      #323

                                      @צדיק-תמים ואיך תדע על איזה תדר היא?
                                      (אם יש איזה אפליקציה עם API מסודר - לא אכפת לי לנסות...)

                                      צדיק תמיםצ תגובה 1 תגובה אחרונה
                                      0
                                      • I iosi poli

                                        @צדיק-תמים ואיך תדע על איזה תדר היא?
                                        (אם יש איזה אפליקציה עם API מסודר - לא אכפת לי לנסות...)

                                        צדיק תמיםצ מנותק
                                        צדיק תמיםצ מנותק
                                        צדיק תמים
                                        מדריכים
                                        כתב נערך לאחרונה על ידי
                                        #324

                                        @iosi-poli לפי ההתראה או תוכן המסך

                                        רוצה לזכור קריאת שמע בזמן? לחץ כאן! || אתר שכולו מדריכים

                                        I תגובה 1 תגובה אחרונה
                                        0
                                        • צדיק תמיםצ צדיק תמים

                                          @iosi-poli לפי ההתראה או תוכן המסך

                                          I מחובר
                                          I מחובר
                                          iosi poli
                                          כתב נערך לאחרונה על ידי
                                          #325

                                          @צדיק-תמים זה מסובך לי...

                                          אבל כמה מסובך זה ליצור אפליקצית רדיו עם API נורמלי?

                                          תגובה 1 תגובה אחרונה
                                          0

                                          • התחברות

                                          • אין לך חשבון עדיין? הרשמה

                                          • התחברו או הירשמו כדי לחפש.
                                          • פוסט ראשון
                                            פוסט אחרון
                                          0
                                          • חוקי הפורום
                                          • פופולרי
                                          • לא נפתר
                                          • משתמשים
                                          • חיפוש גוגל בפורום
                                          • צור קשר