Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for API_LEVEL (0.23 sec)

  1. configure.py

      api_levels = [x.replace('android-', '') for x in api_levels]
    
      def valid_api_level(api_level):
        return os.path.exists(
            os.path.join(android_sdk_home_path, 'platforms',
                         'android-' + api_level))
    
      android_api_level = prompt_loop_or_load_from_env(
          environ_cp,
          var_name='ANDROID_API_LEVEL',
          var_default=api_levels[-1],
    Python
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  2. .github/workflows/build.yml

              arch: ${{ matrix.api-level == '34' && 'x86_64' || 'x86' }}
              script: ./gradlew -PandroidBuild=true :okhttp-android:connectedCheck :android-test:connectedCheck
            env:
              API_LEVEL: ${{ matrix.api-level }}
    
          - name: Run Release Tests
            uses: reactivecircus/android-emulator-runner@v2
            with:
              api-level: ${{ matrix.api-level }}
    Others
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Mon Apr 01 08:28:50 GMT 2024
    - 17.2K bytes
    - Viewed (0)
Back to top