নেটিভ সেটআপ

এই নির্দেশিকাটি আপনাকে দেখাবে কিভাবে C বা C++ থেকে প্লে ইন্টিগ্রিটি এপিআই (Play Integrity API) ব্যবহার করার জন্য আপনার নেটিভ অ্যান্ড্রয়েড প্রজেক্ট সেট আপ করতে হয়। এপিআই-তে কল করার আগে, আপনাকে অবশ্যই প্লে কোর নেটিভ এসডিকে (Play Core Native SDK) ইন্টিগ্রেট করতে হবে। এর জন্য আপনাকে আপনার ডেভেলপমেন্ট এনভায়রনমেন্ট কনফিগার করতে হবে এবং পরবর্তী বিভাগে দেখানো অনুযায়ী আপনার build.gradleCMakeLists.txt ফাইলগুলো আপডেট করতে হবে। আরও বিস্তারিত জানতে আমাদের নেটিভ এপিআই রেফারেন্স (Native API Reference) দেখুন।

ডাউনলোড করুন Play Core Native SDK

ডাউনলোড করার আগে, আপনাকে অবশ্যই নিম্নলিখিত শর্তাবলীতে সম্মত হতে হবে।

শর্তাবলী

Last modified: September 24, 2020
  1. By using the Play Core Software Development Kit, you agree to these terms in addition to the Google APIs Terms of Service ("API ToS"). If these terms are ever in conflict, these terms will take precedence over the API ToS. Please read these terms and the API ToS carefully.
  2. For purposes of these terms, "APIs" means Google's APIs, other developer services, and associated software, including any Redistributable Code.
  3. “Redistributable Code” means Google-provided object code or header files that call the APIs.
  4. Subject to these terms and the terms of the API ToS, you may copy and distribute Redistributable Code solely for inclusion as part of your API Client. Google and its licensors own all right, title and interest, including any and all intellectual property and other proprietary rights, in and to Redistributable Code. You will not modify, translate, or create derivative works of Redistributable Code.
  5. Google may make changes to these terms at any time with notice and the opportunity to decline further use of the Play Core Software Development Kit. Google will post notice of modifications to the terms at https://da.cyanowen.top/guide/playcore/license. Changes will not be retroactive.
ডাউনলোড করুন Play Core Native SDK

play-core-native-sdk-1.16.0.zip

  1. নিম্নলিখিতগুলির মধ্যে যেকোনো একটি করুন:

    • অ্যান্ড্রয়েড স্টুডিও সংস্করণ ৪.০ বা তার উচ্চতর সংস্করণ ইনস্টল করুন। এসডিকে ম্যানেজার ইউআই ব্যবহার করে অ্যান্ড্রয়েড এসডিকে প্ল্যাটফর্ম সংস্করণ ১০.০ (এপিআই লেভেল ২৯) ইনস্টল করুন।
    • অ্যান্ড্রয়েড এসডিকে কমান্ড-লাইন টুলস ইনস্টল করুন এবং sdkmanager ব্যবহার করে অ্যান্ড্রয়েড এসডিকে প্ল্যাটফর্ম সংস্করণ ১০.০ (এপিআই লেভেল ২৯) ইনস্টল করুন।
  2. এসডিকে ম্যানেজার ব্যবহার করে সর্বশেষ সিমেক (CMake) এবং অ্যান্ড্রয়েড নেটিভ ডেভেলপমেন্ট কিট (এনডিকে) ইনস্টল করে নেটিভ ডেভেলপমেন্টের জন্য অ্যান্ড্রয়েড স্টুডিও প্রস্তুত করুন। নেটিভ প্রজেক্ট তৈরি বা ইম্পোর্ট করার বিষয়ে আরও তথ্যের জন্য, এনডিকে দিয়ে শুরু করা (Getting Started with the NDK ) দেখুন।

  3. জিপ ফাইলটি ডাউনলোড করে আপনার প্রজেক্টের পাশে এক্সট্র্যাক্ট করুন।

    ডাউনলোড লিঙ্ক আকার SHA-256 চেকসাম
    ৫৪.৮ এমআইবি 008b8fedc6179a6dc6ccc21af75591afc7036f78f3d5559d844f1b923934fef0
  4. নিচে দেখানো অনুযায়ী আপনার অ্যাপের build.gradle ফাইলটি আপডেট করুন:

    গ্রুভি

        // App build.gradle
    
        plugins {
          id 'com.android.application'
        }
    
        // Define a path to the extracted Play Core SDK files.
        // If using a relative path, wrap it with file() since CMake requires absolute paths.
        def playcoreDir = file('../path/to/playcore-native-sdk')
    
        android {
            defaultConfig {
                ...
                externalNativeBuild {
                    cmake {
                        // Define the PLAYCORE_LOCATION directive.
                        arguments "-DANDROID_STL=c++_static",
                                  "-DPLAYCORE_LOCATION=$playcoreDir"
                    }
                }
                ndk {
                    // Skip deprecated ABIs. Only required when using NDK 16 or earlier.
                    abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
                }
            }
            buildTypes {
                release {
                    // Include Play Core Library proguard config files to strip unused code while retaining the Java symbols needed for JNI.
                    proguardFile '$playcoreDir/proguard/common.pgcfg'
                    proguardFile '$playcoreDir/proguard/gms_task.pgcfg'
                    proguardFile '$playcoreDir/proguard/per-feature-proguard-files'
                    ...
                }
                debug {
                    ...
                }
            }
            externalNativeBuild {
                cmake {
                    path 'src/main/CMakeLists.txt'
                }
            }
        }
    
        dependencies {
            // Import these feature-specific AARs for each Google Play Core library.
            implementation 'com.google.android.play:app-update:2.1.0'
            implementation 'com.google.android.play:asset-delivery:2.3.0'
            implementation 'com.google.android.play:integrity:1.6.0'
            implementation 'com.google.android.play:review:2.0.2'
    
            // Import these common dependencies.
            implementation 'com.google.android.gms:play-services-tasks:18.0.2'
            implementation files("$playcoreDir/playcore-native-metadata.jar")
            ...
        }
        

    কোটলিন

    // App build.gradle
    
    plugins {
        id("com.android.application")
    }
    
    // Define a path to the extracted Play Core SDK files.
    // If using a relative path, wrap it with file() since CMake requires absolute paths.
    val playcoreDir = file("../path/to/playcore-native-sdk")
    
    android {
        defaultConfig {
            ...
            externalNativeBuild {
                cmake {
                    // Define the PLAYCORE_LOCATION directive.
                    arguments += listOf("-DANDROID_STL=c++_static", "-DPLAYCORE_LOCATION=$playcoreDir")
                }
            }
            ndk {
                // Skip deprecated ABIs. Only required when using NDK 16 or earlier.
                abiFilters.clear()
                abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64")
            }
        }
        buildTypes {
            release {
                // Include Play Core Library proguard config files to strip unused code while retaining the Java symbols needed for JNI.
                proguardFile("$playcoreDir/proguard/common.pgcfg")
                proguardFile("$playcoreDir/proguard/gms_task.pgcfg")
                proguardFile("$playcoreDir/proguard/per-feature-proguard-files")
                ...
            }
            debug {
                ...
            }
        }
        externalNativeBuild {
            cmake {
                path = "src/main/CMakeLists.txt"
            }
        }
    }
    
    dependencies {
        // Import these feature-specific AARs for each Google Play Core library.
        implementation("com.google.android.play:app-update:2.1.0")
        implementation("com.google.android.play:asset-delivery:2.3.0")
        implementation("com.google.android.play:integrity:1.6.0")
        implementation("com.google.android.play:review:2.0.2")
    
        // Import these common dependencies.
        implementation("com.google.android.gms:play-services-tasks:18.0.2")
        implementation(files("$playcoreDir/playcore-native-metadata.jar"))
        ...
    }
  5. আপনার অ্যাপের CMakeLists.txt ফাইলগুলো নিচে দেখানো অনুযায়ী আপডেট করুন:

    cmake_minimum_required(VERSION 3.6)
    
    ...
    
    # Add a static library called “playcore” built with the c++_static STL.
    include(${PLAYCORE_LOCATION}/playcore.cmake)
    add_playcore_static_library()
    
    // In this example “main” is your native code library, i.e. libmain.so.
    add_library(main SHARED
            ...)
    
    target_include_directories(main PRIVATE
            ${PLAYCORE_LOCATION}/include
            ...)
    
    target_link_libraries(main
            android
            playcore
            ...)
    

তথ্য সংগ্রহ

গুগলকে পণ্যটির উন্নতি সাধনে সহায়তা করার জন্য প্লে কোর নেটিভ এসডিকে সংস্করণ-সম্পর্কিত ডেটা সংগ্রহ করতে পারে, যার মধ্যে অন্তর্ভুক্ত রয়েছে:

  • অ্যাপের প্যাকেজ নাম
  • অ্যাপের প্যাকেজ সংস্করণ
  • প্লে কোর নেটিভ এসডিকে-এর সংস্করণ

আপনি যখন প্লে কনসোলে আপনার অ্যাপ প্যাকেজ আপলোড করবেন, তখন এই ডেটা সংগ্রহ করা হবে। এই ডেটা সংগ্রহ প্রক্রিয়া থেকে বিরত থাকতে, build.gradle ফাইল থেকে $playcoreDir/playcore-native-metadata.jar ইম্পোর্টটি সরিয়ে দিন।

উল্লেখ্য, আপনার প্লে কোর নেটিভ এসডিকে ব্যবহারের সাথে সম্পর্কিত এই ডেটা সংগ্রহ এবং সংগৃহীত ডেটার উপর গুগলের ব্যবহার, প্লে কনসোলে আপনার অ্যাপ প্যাকেজ আপলোড করার সময় গ্রেডলে ঘোষিত লাইব্রেরি নির্ভরতা সংগ্রহের থেকে পৃথক ও স্বাধীন।