mirror of
				https://github.com/android/ndk-samples
				synced 2025-11-04 06:15:39 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			340 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			340 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
plugins {
 | 
						|
    id "ndksamples.android.application"
 | 
						|
}
 | 
						|
 | 
						|
android {
 | 
						|
    namespace 'com.example.nativemedia'
 | 
						|
 | 
						|
    defaultConfig {
 | 
						|
        applicationId 'com.example.nativemedia'
 | 
						|
    }
 | 
						|
 | 
						|
    externalNativeBuild {
 | 
						|
        cmake {
 | 
						|
            path 'src/main/cpp/CMakeLists.txt'
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    androidResources {
 | 
						|
        noCompress 'ts'
 | 
						|
    }
 | 
						|
}
 |